da85248be7
- updated to libreoffice-3.5.5.2 (3.5.2-rc2) - did some clean up OBS-URL: https://build.opensuse.org/request/show/112476 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libreoffice?expand=0&rev=30
17 lines
352 B
Diff
17 lines
352 B
Diff
--- fileio.c
|
|
+++ fileio.c
|
|
@@ -1490,6 +1490,13 @@
|
|
strcat(t, "ziXXXXXX"); /* must use lowercase for Linux dos file system */
|
|
# if defined(UNIX) && !defined(NO_MKSTEMP)
|
|
/* tempname should not be called */
|
|
+ {
|
|
+ int fd;
|
|
+
|
|
+ if ((fd = mkstemp(t)) < 0)
|
|
+ return NULL;
|
|
+ close(fd);
|
|
+ }
|
|
return t;
|
|
# else
|
|
return mktemp(t);
|