To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44886


User obr changed the following:

                  What    |Old value                 |New value
================================================================================
                    Status|STARTED                   |RESOLVED
--------------------------------------------------------------------------------
                Resolution|                          |FIXED
--------------------------------------------------------------------------------




------- Additional comments from [EMAIL PROTECTED] Tue Aug  9 06:29:54 -0700 
2005 -------
I have changed the algorithm to make use of mktemp where available with a
fallback to the CDE tmp directory, which is located in the user's home 
directory:

if [ -x /usr/bin/mktemp ]
then
  TMPFILE=`mktemp -t open-url.XXXXXX`
else
  DTTMPDIR=`xrdb -query | grep DtTmpDir`
  TMPFILE=${DTTMPDIR:-$HOME/.dt/tmp}/open-url.$$
fi

if [ -z "$TMPFILE" ]; then exit 1; fi
( echo $1 > "$TMPFILE"; dtaction Open "$TMPFILE"; rm -f "$TMPFILE" ) &

The invocation code can be simplified to be url type independant.

Let me know if you still see any security problem in this.

---------------------------------------------------------------------
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