To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=94864
                 Issue #|94864
                 Summary|OpenOffice 1:2.4.1-9 soffice BUG
               Component|framework
                 Version|OOo 2.4.1
                Platform|Unknown
                     URL|
              OS/Version|Linux
                  Status|UNCONFIRMED
       Status whiteboard|
                Keywords|
              Resolution|
              Issue type|DEFECT
                Priority|P1
            Subcomponent|scripting
             Assigned to|d4de
             Reported by|d4de





------- Additional comments from [EMAIL PROTECTED] Sat Oct 11 01:14:00 +0000 
2008 -------
Today, I randomly stumbled upon a bug in the OpenOffice package version
1:2.4.1-9 ...

The bug is located at "/usr/lib/openoffice/program/soffice" which will render
all your OpenOffice programs unusable and unable to run.

The bug is exactly located at line #367 in the file I referenced above, you
should see it like that ...

Code:

362 # test for availability of the fast external splash
363 for arg in $@; do
364     if [ "$arg" = "-nologo" -o "$arg" = "-no-oosplash" ]; then
365             no_oosplash=y
366     fi
367 fi

You see bold line here is incorrect, since 'for' statements ends with 'done' not
'fi' ... so after we correct that the code should look like this ...

Code:

362 # test for availability of the fast external splash
363 for arg in $@; do
364     if [ "$arg" = "-nologo" -o "$arg" = "-no-oosplash" ]; then
365             no_oosplash=y
366     fi
367 done

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to