To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=62636
------- Additional comments from [EMAIL PROTECTED] Thu Sep 28 06:19:55 -0700 2006 ------- 1 tools/source/fsys/dirent.cxx: - W32 _getpid() returns int, Posix getpid() returns pid_t, so the two lines should better read unsigned long mypid = static_cast<unsigned long>(_getpid()); unsigned long mypid = static_cast<unsigned long>(getpid()); - sprintf is unsafe now (as strictly speaking there is no limit for mypid). Better use something like snprintf(ret_val+i, TMPNAME_SIZE, "%05lu%lu", u, mypid); and drop nTemp. 2 idl/source/prj/svidl.cxx: @vq: Are these changes necessary? --------------------------------------------------------------------- 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]
