-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | noncore/unsupported/qpdf/gooStub.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -34,17 +34,17 @@ APPS=$(LOCALAPPS) core/addressbook calculator clock datebook \ | |||
34 | settings/appearance \ | 34 | settings/appearance \ |
35 | settings/security \ | 35 | settings/security \ |
36 | settings/sound \ | 36 | settings/sound \ |
37 | settings/systemtime \ | 37 | settings/systemtime \ |
38 | solitaire spreadsheet tetrix textedit \ | 38 | solitaire spreadsheet tetrix textedit \ |
39 | todo wordgame embeddedkonsole launcher sysinfo \ | 39 | todo wordgame embeddedkonsole launcher sysinfo \ |
40 | parashoot snake citytime showimg netsetup tableviewer \ | 40 | parashoot snake citytime showimg netsetup tableviewer \ |
41 | qipkg mindbreaker go qasteroids qcop fifteen keypebble today opiemail/converter opiemail \ | 41 | qipkg mindbreaker go qasteroids qcop fifteen keypebble today opiemail/converter opiemail \ |
42 | noncore/tictac noncore/opieftp noncore/drawpad noncore/kcheckers noncore/appskey | 42 | noncore/tictac noncore/opieftp noncore/drawpad noncore/kcheckers noncore/appskey noncore/qpdf |
43 | 43 | ||
44 | DOCS = docs/src/opie-policy | 44 | DOCS = docs/src/opie-policy |
45 | single: mpegplayer/libmpeg3 | 45 | single: mpegplayer/libmpeg3 |
46 | 46 | ||
47 | dynamic: $(APPS) | 47 | dynamic: $(APPS) |
48 | 48 | ||
49 | docs: $(DOCS) | 49 | docs: $(DOCS) |
50 | 50 | ||
diff --git a/noncore/unsupported/qpdf/gooStub.cpp b/noncore/unsupported/qpdf/gooStub.cpp index cc29685..edbea55 100644 --- a/noncore/unsupported/qpdf/gooStub.cpp +++ b/noncore/unsupported/qpdf/gooStub.cpp | |||
@@ -35,23 +35,23 @@ GBool openTempFile ( GString **name, FILE **f, char *mode, char *ext ) | |||
35 | int fd; | 35 | int fd; |
36 | 36 | ||
37 | if ( !ext ) | 37 | if ( !ext ) |
38 | ext = ".tmp"; | 38 | ext = ".tmp"; |
39 | 39 | ||
40 | if (!( s = tmpnam ( 0 ))) | 40 | if (!( s = tmpnam ( 0 ))) |
41 | return gFalse; | 41 | return gFalse; |
42 | 42 | ||
43 | *name = new GString ( "qpdf_" ); | 43 | *name = new GString ( s ); |
44 | (*name)-> append ( s ); | ||
45 | 44 | ||
46 | s = (*name)-> getCString ( ); | 45 | s = (*name)-> getCString ( ); |
47 | if (( p = strrchr ( s, '.' ))) | 46 | if (( p = strrchr ( s, '.' ))) |
48 | (*name)-> del ( p - s, (*name)-> getLength ( ) - ( p - s )); | 47 | (*name)-> del ( p - s, (*name)-> getLength ( ) - ( p - s )); |
49 | 48 | ||
49 | (*name)-> append ( "_qpdf" ); | ||
50 | (*name)-> append ( ext ); | 50 | (*name)-> append ( ext ); |
51 | 51 | ||
52 | fd = open ((*name)-> getCString ( ), O_WRONLY | O_CREAT | O_EXCL, 0600 ); | 52 | fd = open ((*name)-> getCString ( ), O_WRONLY | O_CREAT | O_EXCL, 0600 ); |
53 | 53 | ||
54 | if ( fd < 0 || !( *f = fdopen ( fd, mode ))) { | 54 | if ( fd < 0 || !( *f = fdopen ( fd, mode ))) { |
55 | delete *name; | 55 | delete *name; |
56 | return gFalse; | 56 | return gFalse; |
57 | } | 57 | } |