- Timestamp:
- Nov 15, 2012, 1:32:57 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/czw_branch/20120906/ppStack/src/ppStackCleanup.c
r34623 r34666 22 22 options->outRO = NULL; 23 23 24 options->expRO->data_exists = false; 25 options->expRO->parent->data_exists = false; 26 options->expRO->parent->parent->data_exists = false; 27 psFree(options->expRO); 28 options->expRO = NULL; 24 if (options->expRO) { 25 options->expRO->data_exists = false; 26 if (options->expRO->parent) { 27 options->expRO->parent->data_exists = false; 28 options->expRO->parent->parent->data_exists = false; 29 } 30 psFree(options->expRO); 31 options->expRO = NULL; 32 } 29 33 30 34 if (options->bkgRO) { 31 35 options->bkgRO->data_exists = false; 32 options->bkgRO->parent->data_exists = false; 33 options->bkgRO->parent->parent->data_exists = false; 36 if (options->bkgRO->parent) { 37 options->bkgRO->parent->data_exists = false; 38 options->bkgRO->parent->parent->data_exists = false; 39 } 34 40 psFree(options->bkgRO); 35 41 options->bkgRO = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.
