mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 01:29:59 -05:00
GSER issuer quoting fix (coverity)
This commit is contained in:
parent
59ee92213b
commit
30ae5fa2cf
1 changed files with 3 additions and 0 deletions
|
|
@ -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 a new issue