Skip to content
Snippets Groups Projects
Commit a5dad347 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

ITS#356: don't print entry if name is NULL.

parent a995aef4
No related branches found
No related tags found
No related merge requests found
......@@ -195,6 +195,12 @@ print_an_entry( void )
if (debug & D_TRACE)
printf("->print_an_entry()\n");
#endif
if( Entry.name == NULL ) {
printf(" No Entry\n");
return;
}
printf(" \"%s\"\n", Entry.name);
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment