check malloc result
@ -1175,8 +1175,12 @@ error1:
if ( data )
{
result = (char*)malloc( length + 1 );
memcpy( (void*)result, (void*)data, length );
result[ length ] = 0;
if ( result )
}
else
The note is not visible to the blocked user.