From 47b1b1549731dd863213a8a5a28edc9064c2fd00 Mon Sep 17 00:00:00 2001 From: file Date: Tue, 16 Oct 2007 14:21:27 +0000 Subject: Merged revisions 85818 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r85818 | file | 2007-10-16 11:19:39 -0300 (Tue, 16 Oct 2007) | 6 lines Fix memory allocation issue in threadstorage. (closes issue #10995) Reported by: snuffy Patches: new-patch.diff uploaded by snuffy (license 35) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@85819 f38db490-d61c-443f-a65b-d21fe96a405b --- main/threadstorage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/threadstorage.c') diff --git a/main/threadstorage.c b/main/threadstorage.c index de3e9e0df..7de7dad2b 100644 --- a/main/threadstorage.c +++ b/main/threadstorage.c @@ -56,7 +56,7 @@ void __ast_threadstorage_object_add(void *key, size_t len, const char *file, con { struct tls_object *to; - if (!(to = ast_calloc(sizeof(*to), 1))) + if (!(to = ast_calloc(1, sizeof(*to)))) return; to->key = key; -- cgit v1.2.3