Changeset 2164 for pjproject/trunk/pjsip-apps/src/python/_pjsua.c
- Timestamp:
- Jul 21, 2008 9:15:46 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/python/_pjsua.c
r2163 r2164 3104 3104 pj_pool_release(pool); 3105 3105 3106 if (status != PJ_SUCCESS) 3106 if (status != PJ_SUCCESS) { 3107 3107 Py_XDECREF(pUserData); 3108 } 3108 3109 3109 3110 return Py_BuildValue("ii", status, call_id); … … 3245 3246 status = pjsua_call_set_user_data(call_id, (void*)pUserData); 3246 3247 3247 if (status != PJ_SUCCESS) 3248 if (status != PJ_SUCCESS) { 3248 3249 Py_XDECREF(pUserData); 3250 } 3249 3251 3250 3252 return Py_BuildValue("i", status);
Note: See TracChangeset
for help on using the changeset viewer.