Changeset 16546 for issm/trunk-jpl/src/c/kml/KML_File.cpp
- Timestamp:
- 10/25/13 12:03:15 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/kml/KML_File.cpp
r15104 r16546 96 96 /* loop over and process fields within opening and closing tags */ 97 97 98 while (kstri=KMLFileToken(fid, 99 &ncom,&pcom)) { 98 while((kstri=KMLFileToken(fid, &ncom,&pcom))){ 100 99 if (!strncmp(kstri,"</kml", 5)) { 101 100 xDelete<char>(kstri); … … 115 114 this->AddCommnt(ncom,pcom); 116 115 117 for (ncom; ncom>0; ncom--) 118 xDelete<char>(pcom[ncom-1]); 116 for(; ncom>0; ncom--) xDelete<char>(pcom[ncom-1]); 119 117 xDelete<char*>(pcom); 120 118
Note:
See TracChangeset
for help on using the changeset viewer.