Changeset 21439
- Timestamp:
- Feb 10, 2009, 11:35:53 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/magic/remove/src/streaksextern.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/magic/remove/src/streaksextern.c
r20670 r21439 55 55 } 56 56 57 static void streaksFree(Streaks *streaks); 58 57 59 /** Read a list of streak equatorial coordinate definitions and width 58 60 from a text file. The format is: … … 84 86 } 85 87 streaks->list = psAlloc (streaks->size * sizeof(streak)); 88 psMemSetDeallocator(streaks, (psFreeFunc) streaksFree); 86 89 for (i = 0; i != streaks->size; ++i) 87 90 { … … 101 104 return streaks; 102 105 } 106 107 static void streaksFree(Streaks *streaks) 108 { 109 psFree(streaks->list); 110 }
Note:
See TracChangeset
for help on using the changeset viewer.
