Changeset 5450
- Timestamp:
- Oct 7, 2016 1:42:52 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_msg.c
r5191 r5450 252 252 unsigned i; 253 253 for (i=0; i<PJ_ARRAY_SIZE(method_names); ++i) { 254 if (pj_memcmp(str ->ptr, method_names[i]->ptr, str->slen)==0 ||254 if (pj_memcmp(str, &method_names[i], sizeof(pj_str_t))==0 || 255 255 pj_stricmp(str, method_names[i])==0) 256 256 {
Note: See TracChangeset
for help on using the changeset viewer.