Skip to content
Snippets Groups Projects
Commit 781c2d02 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

fix Compare bug in liblber/memory.c (ITS#3116)

parent 5f249791
No related branches found
No related tags found
No related merge requests found
......@@ -341,7 +341,7 @@ ber_memrealloc_x( void* p, ber_len_t s, void *ctx )
mh = p;
mh->bm_length = s;
setend( (char *)&mh[1] + mh->bm_length );
if( (s - oldlen) > 0 ) {
if( s > oldlen ) {
/* poison any new memory */
memset( (char *)&mh[1] + oldlen, 0xff, s - oldlen);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment