summaryrefslogtreecommitdiff
path: root/source3/lib/util.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2006-03-07 18:52:48 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:11:02 -0500
commit71272fc441d7930f7ae810ee3c8f5a58385cb55c (patch)
treee82a581fd1f46c6b89856b9d097184d6ee9c7bbc /source3/lib/util.c
parenta31c931804296a7a9ebff0a92f674492c252700e (diff)
downloadsamba-71272fc441d7930f7ae810ee3c8f5a58385cb55c.tar.gz
samba-71272fc441d7930f7ae810ee3c8f5a58385cb55c.tar.bz2
samba-71272fc441d7930f7ae810ee3c8f5a58385cb55c.zip
r13975: Re-fix Coverity #156 - I had left the hidden arg. inconsistent
between Realloc and realloc_array. Jeremy. (This used to be commit 841c9b1847ae12656b827e3d35b8bf0c3f68b8b4)
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r--source3/lib/util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index 758ebfd27d..6e0a7c0e2f 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -1009,15 +1009,15 @@ void *Realloc(void *p, size_t size, BOOL free_old_on_error)
Type-safe realloc.
****************************************************************************/
-void *realloc_array(void *p, size_t el_size, unsigned int count, BOOL keep_old_on_error)
+void *realloc_array(void *p, size_t el_size, unsigned int count, BOOL free_old_on_error)
{
if (count >= MAX_ALLOC_SIZE/el_size) {
- if (!keep_old_on_error) {
+ if (free_old_on_error) {
SAFE_FREE(p);
}
return NULL;
}
- return Realloc(p, el_size*count, keep_old_on_error);
+ return Realloc(p, el_size*count, free_old_on_error);
}
/****************************************************************************