Changeset 1266 for pjproject/trunk/pjlib/src/pj/except.c
- Timestamp:
- May 11, 2007 3:14:34 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/src/pj/except.c
r974 r1266 42 42 struct pj_exception_state_t *handler; 43 43 44 handler = pj_thread_local_get(thread_local_id); 44 handler = (struct pj_exception_state_t*) 45 pj_thread_local_get(thread_local_id); 45 46 if (handler == NULL) { 46 47 PJ_LOG(1,("except.c", "!!!FATAL: unhandled exception %s!\n", … … 79 80 pj_atexit(&exception_cleanup); 80 81 } 81 parent_handler = pj_thread_local_get(thread_local_id); 82 parent_handler = (struct pj_exception_state_t *) 83 pj_thread_local_get(thread_local_id); 82 84 rec->prev = parent_handler; 83 85 pj_thread_local_set(thread_local_id, rec); … … 88 90 struct pj_exception_state_t *handler; 89 91 90 handler = pj_thread_local_get(thread_local_id); 92 handler = (struct pj_exception_state_t *) 93 pj_thread_local_get(thread_local_id); 91 94 pj_assert(handler != NULL); 92 95 pj_thread_local_set(thread_local_id, handler->prev);
Note: See TracChangeset
for help on using the changeset viewer.