Changeset 938 for trunk/zoo-project/zoo-kernel
- Timestamp:
- Jun 14, 2019, 10:03:19 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-kernel/request_parser.c
r917 r938 1072 1072 else if (cur5 != NULL)/* 1073 1073 && cur5->type == XML_CDATA_SECTION_NODE)*/{ 1074 while(cur5!=NULL && cur5->type != XML_CDATA_SECTION_NODE) 1075 cur5=cur5->next; 1074 1076 xmlFree(mv); 1075 if(cur5 ->content!=NULL){1077 if(cur5!=NULL && cur5->content!=NULL){ 1076 1078 mv=xmlStrdup(cur5->content); 1077 1079 }
Note: See TracChangeset
for help on using the changeset viewer.