disallow omitting the output filename
authorkramm <kramm>
Tue, 23 Oct 2001 17:26:43 +0000 (17:26 +0000)
committerkramm <kramm>
Tue, 23 Oct 2001 17:26:43 +0000 (17:26 +0000)
pdf2swf/pdf2swf.cc

index a99e176..c0dee56 100644 (file)
@@ -211,6 +211,11 @@ int main(int argn, char *argv[])
     srand48(time(0));
     processargs(argn, argv);
     initLog(0,-1,0,0,-1,loglevel);
+    if(!outputname)
+    {
+       fprintf(stderr, "Please use -o to specify an output file\n");
+       exit(1);
+    }
 
     // test if the page range is o.k.
     is_in_range(0x7fffffff, pagerange);