[asterisk-commits] mmichelson: trunk r139554 - in /trunk: ./ include/asterisk/threadstorage.h
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Aug 22 14:45:41 CDT 2008
Author: mmichelson
Date: Fri Aug 22 14:45:41 2008
New Revision: 139554
URL: http://svn.digium.com/view/asterisk?view=rev&rev=139554
Log:
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)
........
Modified:
trunk/ (props changed)
trunk/include/asterisk/threadstorage.h
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/include/asterisk/threadstorage.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/threadstorage.h?view=diff&rev=139554&r1=139553&r2=139554
==============================================================================
--- trunk/include/asterisk/threadstorage.h (original)
+++ trunk/include/asterisk/threadstorage.h Fri Aug 22 14:45:41 2008
@@ -199,7 +199,7 @@
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;
More information about the asterisk-commits
mailing list