X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=sidebyside;f=libraries%2Flibldap%2Fpasswd.c;h=ac2e11220cee15f96d9947cc8b0663349dcf2708;hb=f086faa8e1e57db45cbec11fb5167460b8debc9d;hp=49fe8bb24e0ddef661fea66efc63830e89ad3a53;hpb=fcda57e90f6a28bc43c2a583c3fb3992af9a6b7d;p=openldap diff --git a/libraries/libldap/passwd.c b/libraries/libldap/passwd.c index 49fe8bb24e..ac2e11220c 100644 --- a/libraries/libldap/passwd.c +++ b/libraries/libldap/passwd.c @@ -1,7 +1,7 @@ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * - * Copyright 1998-2005 The OpenLDAP Foundation. + * Copyright 1998-2012 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -27,7 +27,7 @@ #include "ldap-int.h" /* - * LDAP Password Modify (Extended) Operation + * LDAP Password Modify (Extended) Operation (RFC 3062) */ int ldap_parse_passwd( @@ -36,8 +36,7 @@ int ldap_parse_passwd( struct berval *newpasswd ) { int rc; - char *retoid = NULL; - struct berval *retdata; + struct berval *retdata = NULL; assert( ld != NULL ); assert( LDAP_VALID( ld ) ); @@ -47,31 +46,32 @@ int ldap_parse_passwd( newpasswd->bv_val = NULL; newpasswd->bv_len = 0; - rc = ldap_parse_extended_result( ld, res, &retoid, &retdata, 0 ); - - if( rc != LDAP_SUCCESS ) { + rc = ldap_parse_extended_result( ld, res, NULL, &retdata, 0 ); + if ( rc != LDAP_SUCCESS ) { return rc; } - if( retdata != NULL ) { + if ( retdata != NULL ) { ber_tag_t tag; BerElement *ber = ber_init( retdata ); - if( ber == NULL ) { - ld->ld_errno = LDAP_NO_MEMORY; - return ld->ld_errno; + if ( ber == NULL ) { + rc = ld->ld_errno = LDAP_NO_MEMORY; + goto done; } /* we should check the tag */ tag = ber_scanf( ber, "{o}", newpasswd ); ber_free( ber, 1 ); - if( tag == LBER_ERROR ) { + if ( tag == LBER_ERROR ) { rc = ld->ld_errno = LDAP_DECODING_ERROR; } } - ber_memfree( retoid ); +done:; + ber_bvfree( retdata ); + return rc; } @@ -156,7 +156,7 @@ ldap_passwd_s( return rc; } - if ( ldap_result( ld, msgid, LDAP_MSG_ALL, (struct timeval *) NULL, &res ) == -1 ) { + if ( ldap_result( ld, msgid, LDAP_MSG_ALL, (struct timeval *) NULL, &res ) == -1 || !res ) { return ld->ld_errno; }