mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
fix possible uninit bug
This commit is contained in:
parent
bdf9b3ae1b
commit
976c35fbf0
@ -350,7 +350,7 @@ int value_find_ex(
|
|||||||
}
|
}
|
||||||
|
|
||||||
if( mr->smr_syntax->ssyn_normalize ) {
|
if( mr->smr_syntax->ssyn_normalize ) {
|
||||||
struct berval nval_tmp;
|
struct berval nval_tmp = { 0, NULL };
|
||||||
|
|
||||||
rc = mr->smr_syntax->ssyn_normalize(
|
rc = mr->smr_syntax->ssyn_normalize(
|
||||||
mr->smr_syntax,
|
mr->smr_syntax,
|
||||||
|
Loading…
Reference in New Issue
Block a user