mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-04-06 15:00:40 +08:00
ITS#9643 Fix out of bounds read in entry_decode()
This commit is contained in:
parent
73be971a7d
commit
ccb4f4854a
@ -845,7 +845,8 @@ int entry_decode(EntryHeader *eh, Entry **e)
|
||||
a = x->e_attrs;
|
||||
bptr = (BerVarray)eh->bv.bv_val;
|
||||
|
||||
while ((i = entry_getlen(&ptr))) {
|
||||
while (((char *)ptr - eh->bv.bv_val < eh->bv.bv_len) &&
|
||||
(i = entry_getlen(&ptr))) {
|
||||
struct berval bv;
|
||||
bv.bv_len = i;
|
||||
bv.bv_val = (char *) ptr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user