Changeset 14118
- Timestamp:
- 03/29/08 23:36:26 (3 months ago)
- Files:
-
- branches/1.5/gdal/alg/thinplatespline.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.5/gdal/alg/thinplatespline.cpp
r10645 r14118 74 74 for( i = 0; i < VIZGEOREF_MAX_VARS; i++ ) 75 75 { 76 rhs[i] = (double *) VSI Malloc( sizeof(double) *new_max );77 coef[i] = (double *) VSI Malloc( sizeof(double) *new_max );76 rhs[i] = (double *) VSICalloc( sizeof(double), new_max ); 77 coef[i] = (double *) VSICalloc( sizeof(double), new_max ); 78 78 } 79 79 }
