Changeset 609


Ignore:
Timestamp:
Jul 17, 2006 12:02:03 PM (18 years ago)
Author:
bennylp
Message:

Set the SDP parser to allow blank newline at the end of the message

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/sdp.c

    r572 r609  
    10801080                    parse_version(&scanner, &ctx); 
    10811081                    break; 
     1082                case 13: 
     1083                    /* Allow empty newline at the end of the message */ 
     1084                    pj_scan_get_char(&scanner); 
     1085                    /* Continue below */ 
     1086                case 10: 
     1087                    pj_scan_get_char(&scanner); 
     1088                    if (!pj_scan_is_eof(&scanner)) { 
     1089                        on_scanner_error(&scanner); 
     1090                    } 
     1091                    break; 
    10821092                default: 
    10831093                    if (cur_name >= 'a' && cur_name <= 'z') 
Note: See TracChangeset for help on using the changeset viewer.