mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-04 14:10:39 -05:00
more warning fixes
This commit is contained in:
parent
6981c8fd04
commit
eec889f6d9
1 changed files with 2 additions and 3 deletions
|
|
@ -246,7 +246,6 @@ sb_sasl_gssapi_decode(
|
|||
int conf_req_flag = 0;
|
||||
int conf_state;
|
||||
unsigned char *b;
|
||||
ber_len_t pkt_len;
|
||||
|
||||
wrapped.value = src->buf_base + 4;
|
||||
wrapped.length = src->buf_end - 4;
|
||||
|
|
@ -288,7 +287,7 @@ sb_sasl_gssapi_decode(
|
|||
{
|
||||
ber_log_printf( LDAP_DEBUG_ANY, p->sbiod->sbiod_sb->sb_debug,
|
||||
"sb_sasl_gssapi_decode: failed to grow the buffer to %lu bytes\n",
|
||||
pkt_len );
|
||||
unwrapped.length );
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
@ -553,7 +552,7 @@ guess_service_principal(
|
|||
}
|
||||
|
||||
svc_principal = (char*) ldap_memalloc(svc_principal_size * sizeof(char));
|
||||
if ( ret < 0 ) {
|
||||
if ( svc_principal == NULL ) {
|
||||
ld->ld_errno = LDAP_NO_MEMORY;
|
||||
return ld->ld_errno;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue