Don't segfault if an 'all' hash argument is combined with specific hashes.

This commit is contained in:
Josh Elsasser 2007-07-14 18:57:50 +00:00
parent 1ecbe8da65
commit 357f7444b0
1 changed files with 1 additions and 1 deletions

View File

@ -843,7 +843,7 @@ sendidreqs( void )
for( ii = 0; ARRAYLEN( reqs ) > ii; ii++)
{
if( SLIST_EMPTY( reqs[ii].list ) )
if( NULL == reqs[ii].list || SLIST_EMPTY( reqs[ii].list ) )
{
continue;
}