Fixed segfault in --aspect scanning
authorIngo Ruhnke <grumbel@gmx.de>
Thu, 22 May 2008 22:24:16 +0000 (22:24 +0000)
committerIngo Ruhnke <grumbel@gmx.de>
Thu, 22 May 2008 22:24:16 +0000 (22:24 +0000)
SVN-Revision: 5509

src/main.cpp

index a6ee4e7..c85ede6 100644 (file)
@@ -315,7 +315,7 @@ static bool parse_commandline(int argc, char** argv)
         {
           int aspect_width  = 4;
           int aspect_height = 3;
-          if(sscanf(argv[++i], "%d:%d", &aspect_width, &aspect_height) != 2) {
+          if(sscanf(argv[i], "%d:%d", &aspect_width, &aspect_height) != 2) {
             print_usage(argv[0]);
             throw std::runtime_error("Invalid aspect spec, should be WIDTH:HEIGHT");
           } else {