Changeset 11362

Show
Ignore:
Timestamp:
04/26/07 15:02:26 (2 years ago)
Author:
warmerdam
Message:

fix CPLRemoveXMLChild() (bug #1598)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/gdal/port/cpl_minixml.cpp

    r11319 r11362  
    13691369        return FALSE; 
    13701370 
    1371     for( psThis = psParent->psChild; psThis != NULL; psThis = psThis->psNext ) 
     1371    for( psThis = psParent->psChild;  
     1372         psThis != NULL;  
     1373         psLast = psThis, psThis = psThis->psNext ) 
    13721374    { 
    13731375        if( psThis == psChild )