mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-24 13:24:56 +08:00
GSER issuer quoting fix (coverity)
This commit is contained in:
parent
59ee92213b
commit
30ae5fa2cf
@ -3315,6 +3315,7 @@ serialNumberAndIssuerCheck(
|
||||
}
|
||||
if ( is->bv_val[is->bv_len+1] == '"' ) {
|
||||
/* double dquote */
|
||||
numdquotes++;
|
||||
is->bv_len += 2;
|
||||
continue;
|
||||
}
|
||||
@ -3892,6 +3893,7 @@ issuerAndThisUpdateCheck(
|
||||
}
|
||||
if ( is->bv_val[is->bv_len+1] == '"' ) {
|
||||
/* double dquote */
|
||||
numdquotes++;
|
||||
is->bv_len += 2;
|
||||
continue;
|
||||
}
|
||||
@ -4434,6 +4436,7 @@ serialNumberAndIssuerSerialCheck(
|
||||
}
|
||||
if ( is->bv_val[is->bv_len + 1] == '"' ) {
|
||||
/* double dquote */
|
||||
numdquotes++;
|
||||
is->bv_len += 2;
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user