Archived
14
0
Fork 0

Merged revisions 305040 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.8

........
  r305040 | tilghman | 2011-01-31 01:51:40 -0600 (Mon, 31 Jan 2011) | 2 lines
  
  Use the non-specific API aliases, to avoid a problem with building the utils directory.
........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@305041 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
tilghman 2011-01-31 07:52:48 +00:00
parent 320600f721
commit 11923befdb

View file

@ -443,7 +443,7 @@ static inline void ast_reentrancy_init(struct ast_lock_track **plt)
struct ast_lock_track *lt = *plt;
if (!lt) {
lt = *plt = (struct ast_lock_track *) ast_calloc(1, sizeof(*lt));
lt = *plt = (struct ast_lock_track *) calloc(1, sizeof(*lt));
}
for (i = 0; i < AST_MAX_REENTRANCY; i++) {
@ -470,7 +470,7 @@ static inline void delete_reentrancy_cs(struct ast_lock_track **plt)
if (*plt) {
lt = *plt;
pthread_mutex_destroy(&lt->reentr_mutex);
ast_free(lt);
free(lt);
*plt = NULL;
}
}