diff options
Diffstat (limited to 'converter')
-rw-r--r-- | converter/other/pamtompfont.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/converter/other/pamtompfont.c b/converter/other/pamtompfont.c index 7de6396c..92f8de29 100644 --- a/converter/other/pamtompfont.c +++ b/converter/other/pamtompfont.c @@ -42,7 +42,7 @@ parseCommandLine(int argc, char ** argv, Note that the file spec array we return is stored in the storage that was passed to us as the argv array. -----------------------------------------------------------------------------*/ - optEntry *option_def; + optEntry * option_def; /* Instructions to OptParseOptions3 on how to parse our options. */ optStruct3 opt; @@ -69,6 +69,8 @@ parseCommandLine(int argc, char ** argv, "specified %d", argc-1); else cmdlineP->inputFilename = argv[1]; + + free(option_def); } |