Kaydet (Commit) b870ecd6 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

warning C4701: potentially uninitialized local variable

Change-Id: I163033dc6f1fa17a96cb9da18f73ef8cdd367f00
üst 77f994bd
...@@ -234,7 +234,7 @@ int MAIN(int argc, char** argv) ...@@ -234,7 +234,7 @@ int MAIN(int argc, char** argv)
{ {
int i; int i;
char** useargv = 0; char** useargv = 0;
char** pfargv; char** pfargv = NULL;
if( nRunde == 0 ) if( nRunde == 0 )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment