Changeset 4614
- Timestamp:
- Oct 8, 2013 11:13:11 AM (11 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib-util/src/pjlib-util/http_client.c
r4613 r4614 656 656 *remainder = size - 1 - i; 657 657 658 pj_bzero(response, sizeof( response));658 pj_bzero(response, sizeof(*response)); 659 659 response->content_length = -1; 660 660 -
pjproject/trunk/pjlib-util/src/pjlib-util/md5.c
r1001 r4614 158 158 byteReverse((unsigned char *) ctx->buf, 4); 159 159 pj_memcpy(digest, ctx->buf, 16); 160 pj_bzero(ctx, sizeof( ctx)); /* In case it's sensitive */160 pj_bzero(ctx, sizeof(*ctx)); /* In case it's sensitive */ 161 161 } 162 162 -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c
r4544 r4614 1384 1384 */ 1385 1385 if (info->status != PJ_SUCCESS) 1386 pj_memcpy(&call->med_ch_info, info, sizeof( info));1386 pj_memcpy(&call->med_ch_info, info, sizeof(*info)); 1387 1387 1388 1388 /* Check whether all the call's medias have finished calling their
Note: See TracChangeset
for help on using the changeset viewer.