]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Must initialize 'inspect' flag
authorGuido van Rossum <guido@python.org>
Fri, 5 Nov 1993 10:16:09 +0000 (10:16 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 5 Nov 1993 10:16:09 +0000 (10:16 +0000)
Python/frozenmain.c

index 2aee24941c30048d08df62876c4da8b3473ec410..8f35ea5b92bc550efe641a15d226ee49b0fdc9cf 100644 (file)
@@ -37,7 +37,8 @@ main(argc, argv)
        char **argv;
 {
        char *p;
-       int n, inspect, sts;
+       int n, sts;
+       int inspect = 0;
 
        if ((p = getenv("PYTHONDEBUG")) && *p != '\0')
                debugging = 1;