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

don't assume NULL is zero.

parent a8f7f0b3
No related branches found
No related tags found
No related merge requests found
......@@ -426,8 +426,10 @@ int s;
fprintf( fp, ".\r\n" );
rewind(fp);
if ( ld )
if ( ld == NULL) {
ldap_unbind( ld );
}
exit( 1 );
/* NOT REACHED */
......
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