Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
128a8ebb
Commit
128a8ebb
authored
Sep 29, 2009
by
Quanah Gibson-Mount
Browse files
ITS#6303
parent
9021cfa2
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
128a8ebb
...
@@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log
...
@@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.19 Engineering
OpenLDAP 2.4.19 Engineering
Fixed slapd tools to allow -n for conversion (ITS#6258)
Fixed slapd tools to allow -n for conversion (ITS#6258)
Fixed slapd-ldif buffer overflow (ITS#6303)
Fixed slapo-dynlist lock leak (ITS#6308)
Fixed slapo-dynlist lock leak (ITS#6308)
Fixed slapo-pcache cache corruption (ITS#6242)
Fixed slapo-pcache cache corruption (ITS#6242)
Fixed slapo-sssvlv sort control dereferencing (ITS#6288)
Fixed slapo-sssvlv sort control dereferencing (ITS#6288)
...
...
servers/slapd/back-ldif/ldif.c
View file @
128a8ebb
...
@@ -593,9 +593,9 @@ typedef struct bvlist {
...
@@ -593,9 +593,9 @@ typedef struct bvlist {
char
*
trunc
;
/* filename was truncated here */
char
*
trunc
;
/* filename was truncated here */
int
inum
;
/* num from "attr={num}" in filename, or INT_MIN */
int
inum
;
/* num from "attr={num}" in filename, or INT_MIN */
char
savech
;
/* original char at *trunc */
char
savech
;
/* original char at *trunc */
char
fname
;
/* variable length array
BVL_NAME(bvl
) = &fname
*/
/*
BVL_NAME(
&
bvl
ist) is the filename, allocated after the struct:
*/
# define BVL_NAME(bvl) ((char *) (bvl) +
offsetof(bvlist, fname
))
# define BVL_NAME(bvl)
((char *)
(
(bvl) +
1
))
# define BVL_SIZE(namelen) (sizeof(bvlist) + (namelen))
# define BVL_SIZE(namelen) (sizeof(bvlist) + (namelen)
+ 1
)
}
bvlist
;
}
bvlist
;
static
int
static
int
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment