2008-08-15 Joel Sherrill <joel.sherrill@OARcorp.com>

* sp43/init.c: Fix derefence of uninitialized pointer.
This commit is contained in:
Joel Sherrill
2008-08-15 16:33:22 +00:00
parent d95b992a2c
commit 4f6bb5b01f
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2008-08-15 Joel Sherrill <joel.sherrill@OARcorp.com>
* sp43/init.c: Fix derefence of uninitialized pointer.
2008-08-07 Joel Sherrill <joel.sherrill@OARcorp.com>
* spsize/size.c: Make _System_state_Is_multiprocessing unused when

View File

@@ -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( "-" );