Merged revisions 139554 via svnmerge from

https://origsvn.digium.com/svn/asterisk/trunk

................
r139554 | mmichelson | 2008-08-22 14:45:41 -0500 (Fri, 22 Aug 2008) | 16 lines

Merged revisions 139553 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r139553 | mmichelson | 2008-08-22 14:45:19 -0500 (Fri, 22 Aug 2008) | 8 lines

Fix compilation when DEBUG_THREAD_LOCALS is selected

(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.6.0@139555 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Mark Michelson 17 years ago
parent 44afac9c8f
commit c9c22bc30f

@ -199,7 +199,7 @@ void *__ast_threadstorage_get(struct ast_threadstorage *ts, size_t init_size, co
return NULL; return NULL;
} }
pthread_setspecific(ts->key, buf); 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; return buf;

Loading…
Cancel
Save