On Mon, 2006-03-13 at 23:52 -0700, dennis wrote: > dennis wrote: > > > > > I changed line 233 to echo "$sd_prog/$sd_binary" "$@" > > > > [EMAIL PROTECTED] ~]$ /usr/bin/soffice > > /etc/openoffice.org-2.0/program/soffice.bin > > > > then I tried running .. still seg fault. I captured the strace in a > > file...does someone want it? Here are the last few lines of the strace: > > > I meant to say... then I tried running > /etc/openoffice.org-2.0/program/soffice.bin ... still seg fault.
It looks like an uninitialised (NULL) pointer reference, guessing by the 0 @ 0 after the SEGFAULT line in the output. The question is, is it in a shared object library that OOo depends on, in the JRE, or in OOo itself? OOo is at the stage of reading your user config, so is there any chance some file has been corrupted there? It doesn't seem too likely with that error, but who knows. Have you tried running it as a new user - one that doesn't have any existing OOo user profile data etc. What else can you say about your system? Is this the first OOo you've installed, run, or whatever? What was the last OOo version that ran Ok? Perhaps running soffice.bin via gdb might shed more light. Run: gdb /etc/openoffice.org-2.0/program/soffice.bin and then type 'run' <Enter>. When it segfaults, type 'where' <Enter>. I don't think there are any debugging symbols in OOo but it just may indicate which module or library etc the segfault occurs in. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
