diff options
author | Jeremy Allison <jra@samba.org> | 2001-03-23 21:54:30 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-03-23 21:54:30 +0000 |
commit | be825b07464f54d717333318a08154cff632f706 (patch) | |
tree | 688e96b94609d0f0a19f12aabc2ba561a9508887 /source/lib | |
parent | 1ab63cf3a6f62c3e4ca19a549bde78dad0eb4340 (diff) | |
download | samba-be825b07464f54d717333318a08154cff632f706.tar.gz samba-be825b07464f54d717333318a08154cff632f706.tar.xz samba-be825b07464f54d717333318a08154cff632f706.zip |
Added Gerald's fixes.
Jeremy.
Diffstat (limited to 'source/lib')
-rw-r--r-- | source/lib/talloc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source/lib/talloc.c b/source/lib/talloc.c index aa9fc3ed758..860fc67bcbb 100644 --- a/source/lib/talloc.c +++ b/source/lib/talloc.c @@ -84,7 +84,6 @@ void *talloc(TALLOC_CTX *t, size_t size) /* a talloc version of realloc */ void *talloc_realloc(TALLOC_CTX *t, void *ptr, size_t size) { - void *p; struct talloc_chunk *tc; for (tc=t->list; tc; tc=tc->next) { |