Ignore:
Timestamp:
08/08/12 14:38:52 (13 years ago)
Author:
cborstad
Message:

CHG: merged trunk-jpl into branch through revision 12945

Location:
issm/branches/trunk-jpl-damage
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/branches/trunk-jpl-damage

  • issm/branches/trunk-jpl-damage/src/c/classes/objects/KML/KML_File.cpp

    r12835 r12946  
    103103                                                          &ncom,&pcom)) {
    104104                if      (!strncmp(kstri,"</kml", 5)) {
    105                         xfree((void**)&kstri);
     105                        xDelete<char>(kstri);
    106106                        break;
    107107                }
     
    114114                        KML_Object::Read(fid,kstri);
    115115
    116                 xfree((void**)&kstri);
     116                xDelete<char>(kstri);
    117117        }
    118118
     
    120120
    121121        for (ncom; ncom>0; ncom--)
    122                 xfree((void**)&(pcom[ncom-1]));
    123         xfree((void**)&pcom);
     122                xDelete<char>(pcom[ncom-1]);
     123        xDelete<char*>(pcom);
    124124
    125125        return;
Note: See TracChangeset for help on using the changeset viewer.