From 595407f65bfffbdfb1e9907068ea8079151a6cf7 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 1 Jul 2009 10:48:03 -0500 Subject: [PATCH] Fix uninitialized use of bufpos --- gatchat/gatresult.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gatchat/gatresult.c b/gatchat/gatresult.c index 7a983083..9c382d91 100644 --- a/gatchat/gatresult.c +++ b/gatchat/gatresult.c @@ -174,6 +174,7 @@ gboolean g_at_result_iter_next_hexstring(GAtResultIter *iter, len = strlen(line); pos = iter->line_pos; + bufpos = iter->buf + pos; /* Omitted string */ if (line[pos] == ',') { @@ -192,7 +193,7 @@ gboolean g_at_result_iter_next_hexstring(GAtResultIter *iter, *length = (end - pos) / 2; - for (bufpos = iter->buf + pos; pos < end; pos += 2) + for (; pos < end; pos += 2) sscanf(line + pos, "%02hhx", bufpos++); out: