]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix compilation when DEBUG_THREAD_LOCALS is selected
authorMark Michelson <mmichelson@digium.com>
Fri, 22 Aug 2008 19:45:19 +0000 (19:45 +0000)
committerMark Michelson <mmichelson@digium.com>
Fri, 22 Aug 2008 19:45:19 +0000 (19:45 +0000)
(closes issue #13298)
Reported by: snuffy
Patches:
      bug13298_20080822.diff uploaded by snuffy (license 35)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@139553 65c4cc65-6c06-0410-ace0-fbb531ad65f3

include/asterisk/threadstorage.h

index 799a86332cc5fb4fa99476847f318e30f86c03ea..59bd8cd72b50ef52be73bc96b9277a1b4c430e37 100644 (file)
@@ -159,7 +159,7 @@ void *__ast_threadstorage_get(struct ast_threadstorage *ts, size_t init_size, co
                if (!(buf = ast_calloc(1, init_size)))
                        return NULL;
                pthread_setspecific(ts->key, buf);
-               __ast_threadstorage_object_add(ts->key, init_size, file, function, line);
+               __ast_threadstorage_object_add(&ts->key, init_size, file, function, line);
        }
 
        return buf;