X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Fgetattr.c;h=1af98813815b67842ac4a2a66cfeb4049c266ad0;hb=64d5725662d33a168055df6db2ea06c366a1d0f1;hp=fc4d31f56a4afea6957985a91bacf744747ac918;hpb=8c772985c7b7300665a30932d71d45c8af24af21;p=openldap diff --git a/libraries/libldap/getattr.c b/libraries/libldap/getattr.c index fc4d31f56a..1af9881381 100644 --- a/libraries/libldap/getattr.c +++ b/libraries/libldap/getattr.c @@ -33,7 +33,7 @@ ldap_first_attribute( LDAP *ld, LDAPMessage *entry, BerElement **ber ) assert( entry != NULL ); assert( ber != NULL ); - if ( (*ber = ldap_alloc_ber_with_options( ld )) == NULLBER ) { + if ( (*ber = ldap_alloc_ber_with_options( ld )) == NULL ) { *ber = NULL; return( NULL ); } @@ -46,7 +46,7 @@ ldap_first_attribute( LDAP *ld, LDAPMessage *entry, BerElement **ber ) * positioned right before the next attribute type/value sequence. */ - if ( ber_scanf( *ber, "{x{{ax}", &attr ) + if ( ber_scanf( *ber, "{x{{ax}" /*}}*/, &attr ) == LBER_ERROR ) { ld->ld_errno = LDAP_DECODING_ERROR; ber_free( *ber, 0 );