mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 09:09:54 -05:00
fix possible uninit bug
This commit is contained in:
parent
bdf9b3ae1b
commit
976c35fbf0
1 changed files with 1 additions and 1 deletions
|
|
@ -350,7 +350,7 @@ int value_find_ex(
|
|||
}
|
||||
|
||||
if( mr->smr_syntax->ssyn_normalize ) {
|
||||
struct berval nval_tmp;
|
||||
struct berval nval_tmp = { 0, NULL };
|
||||
|
||||
rc = mr->smr_syntax->ssyn_normalize(
|
||||
mr->smr_syntax,
|
||||
|
|
|
|||
Loading…
Reference in a new issue