]> granicus.if.org Git - graphviz/commitdiff
fix some unitialized variable warnings
authorellson <devnull@localhost>
Tue, 18 Oct 2005 19:05:38 +0000 (19:05 +0000)
committerellson <devnull@localhost>
Tue, 18 Oct 2005 19:05:38 +0000 (19:05 +0000)
cmd/lefty/internal.c

index 8a186360d3a87e219093716869ae91cd46dc99c7..4ecd0ba710f22e81ea20342c4470bb330a553e49 100644 (file)
@@ -515,8 +515,8 @@ int Iconcat (int argc, lvar_t *argv) {
 }
 
 int Iquote (int argc, lvar_t *argv) {
-    Tobj so, ao, qo;
-    char *s, *s1, *s2, *qs, *as;
+    Tobj so, ao=NULL, qo=NULL;
+    char *s=NULL, *s1, *s2, *qs, *as;
     char buf2[50];
     int n, bufi;