Ignore:
Timestamp:
Oct 13, 2010 11:17:51 AM (14 years ago)
Author:
bennylp
Message:

Fixed #1147 (Bug in parsing multipart message bodies (thanks Johan Lantz for the report)): leave the quote in parameter values and let the multipart code handle this instead

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip/sip_parser.c

    r3340 r3342  
    18571857    while (*scanner->curptr == ';') { 
    18581858        pjsip_param *param = PJ_POOL_ALLOC_T(ctx->pool, pjsip_param); 
    1859         int_parse_param(scanner, ctx->pool, &param->name, &param->value, 
    1860                         PJSIP_PARSE_REMOVE_QUOTE); 
     1859        int_parse_param(scanner, ctx->pool, &param->name, &param->value, 0); 
    18611860        pj_list_push_back(&hdr->media.param, param); 
    18621861    } 
Note: See TracChangeset for help on using the changeset viewer.