From 4f6bb5b01f8160a05b62d99f4669f64c8a960bf2 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 15 Aug 2008 16:33:22 +0000 Subject: 2008-08-15 Joel Sherrill * sp43/init.c: Fix derefence of uninitialized pointer. --- testsuites/sptests/sp43/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testsuites/sptests/sp43/init.c') diff --git a/testsuites/sptests/sp43/init.c b/testsuites/sptests/sp43/init.c index b5ec115c68..d5fba8ad95 100644 --- a/testsuites/sptests/sp43/init.c +++ b/testsuites/sptests/sp43/init.c @@ -64,8 +64,8 @@ void change_name( else { printf( "(" ); for (c=newName ; *c ; ) { - if (isprint(*ptr)) printf( "%c", *c ); - else printf( "0x%02x", *c ); + if (isprint(*c)) printf( "%c", *c ); + else printf( "0x%02x", *c ); c++; if ( *c ) printf( "-" ); -- cgit v1.2.3