[usp10 1/6] Fix an uninitialized static variable.

Juan Lang juan.lang at gmail.com
Thu Dec 17 14:46:45 CST 2009


Hi Jason,

-    static const ABC nil;
+    static const ABC nil = {0};

This has no effect, as static variables are implicitly initialized to
0 anyway.  It might be a little less surprising this way..
--Juan



More information about the wine-devel mailing list