Issue 94864 - OpenOffice 1:2.4.1-9 soffice BUG
Summary: OpenOffice 1:2.4.1-9 soffice BUG
Status: CLOSED NOT_AN_OOO_ISSUE
Alias: None
Product: General
Classification: Code
Component: scripting (show other issues)
Version: OOo 2.4.1
Hardware: Unknown Linux, all
: P1 (highest) Trivial (vote)
Target Milestone: ---
Assignee: d4de
QA Contact: issues@framework
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-10-11 02:14 UTC by d4de
Modified: 2008-10-13 08:44 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description d4de 2008-10-11 02:14:00 UTC
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
Comment 1 rene 2008-10-13 08:44:03 UTC
a) this is not a framework bug, in fact this is not a upstream bug at all
b) the bug is in -10, not -9 (see your openoffice.org-common version)
c) at the time you reported it it was already fixed in -11

(see packages.qa.debian.org/o/openoffice.org/news/20081010T071827Z.html)

-> INVALID
Comment 2 rene 2008-10-13 08:44:20 UTC
close