From 31c375bd6cdaab71ef78374b64e413941854fa4e Mon Sep 17 00:00:00 2001 From: David Levine Date: Tue, 6 Mar 2012 18:48:21 -0600 Subject: [PATCH] Initialized local wasdlm to prevent uninitialized use. --- uip/burst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uip/burst.c b/uip/burst.c index 1f626f3..980972e 100644 --- a/uip/burst.c +++ b/uip/burst.c @@ -208,7 +208,7 @@ main (int argc, char **argv) static int find_delim (int msgnum, struct smsg *smsgs) { - int wasdlm, msgp; + int wasdlm = 0, msgp; off_t pos; char c, *msgnam; char buffer[BUFSIZ]; -- 1.7.10.4