From 2f0d5e453b97e2d34593e00f8173635ae990a08d Mon Sep 17 00:00:00 2001 From: Cynthia Rempel Date: Sun, 25 Aug 2013 18:00:31 -0700 Subject: Initialize the string before replacing characters --- tools/build/unhex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/build/unhex.c') diff --git a/tools/build/unhex.c b/tools/build/unhex.c index 9248e8ffff..be4465d807 100644 --- a/tools/build/unhex.c +++ b/tools/build/unhex.c @@ -545,6 +545,7 @@ convert_TI_records( while ( ! endrecord && (fgets(buff, sizeof(buff), ifp))) { + p = &buff[0]; if (p[strlen(p)-1] == '\n') /* get rid of newline */ p[strlen(p)-1] = '\0'; @@ -553,7 +554,6 @@ convert_TI_records( tb.dl_count = 0; - p = &buff[0]; eol = FALSE; while ( ! eol && ! endrecord) { -- cgit v1.2.3