about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-30 10:54:22 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2000-05-30 10:54:22 +0000
commit24520730a669502ab74c46d9ff90c043f0903f3d (patch)
treee51a7a36f6eff987fc04c102fabbea54a4d2a2d7
parentb2f8bc5ea25dbd1710aca9a681a70dcba6a6f436 (diff)
downloadzsh-24520730a669502ab74c46d9ff90c043f0903f3d.tar.gz
zsh-24520730a669502ab74c46d9ff90c043f0903f3d.tar.xz
zsh-24520730a669502ab74c46d9ff90c043f0903f3d.zip
bogus uninitialised variable warning
-rw-r--r--Src/Zle/computil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/computil.c b/Src/Zle/computil.c
index 1a98528df..d6bc35a39 100644
--- a/Src/Zle/computil.c
+++ b/Src/Zle/computil.c
@@ -1224,7 +1224,7 @@ static int
 ca_parse_line(Cadef d, int multi, int first)
 {
     Caarg adef, ddef;
-    Caopt ptr, wasopt, dopt;
+    Caopt ptr, wasopt = NULL, dopt;
     struct castate state;
     char *line, *pe, **argxor = NULL;
     int cur, doff, argend, arglast;