Changeset 4220
- Timestamp:
- Aug 7, 2012 3:32:34 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib-util/src/pjlib-util/resolver.c
r3553 r4220 1249 1249 pj_hash_set(NULL, resolver->hquerybyres, &q->key, sizeof(q->key), 0, NULL); 1250 1250 1251 /* Workaround for deadlock problem in #1565 (similar to #1108) */ 1252 pj_mutex_unlock(resolver->mutex); 1253 1251 1254 /* Call application callback, if any. */ 1252 1255 if (q->cb) … … 1260 1263 cq = cq->next; 1261 1264 } 1265 1266 /* Workaround for deadlock problem in #1565 (similar to #1108) */ 1267 pj_mutex_lock(resolver->mutex); 1262 1268 1263 1269 /* Clear data */
Note: See TracChangeset
for help on using the changeset viewer.