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

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

    r12835 r12946  
    113113                                                          &ncom,&pcom)) {
    114114                if      (!strncmp(kstri,"</PolyStyle",11)) {
    115                         xfree((void**)&kstri);
     115                        xDelete<char>(kstri);
    116116                        break;
    117117                }
     
    133133                        KML_ColorStyle::Read(fid,kstri);
    134134
    135                 xfree((void**)&kstri);
     135                xDelete<char>(kstri);
    136136        }
    137137
     
    139139
    140140        for (ncom; ncom>0; ncom--)
    141                 xfree((void**)&(pcom[ncom-1]));
    142         xfree((void**)&pcom);
     141                xDelete<char>(pcom[ncom-1]);
     142        xDelete<char*>(pcom);
    143143
    144144        return;
Note: See TracChangeset for help on using the changeset viewer.