* This routine frees the memory used by the statistics * data structure. * @param Statistics pointer to data structure to be freed * @return None * @note Exceptions: None * @note History: 6/5/89, DSJ, Created. */
| 2157 | * @note History: 6/5/89, DSJ, Created. |
| 2158 | */ |
| 2159 | void FreeStatistics(STATISTICS *Statistics) { |
| 2160 | memfree (Statistics->CoVariance); |
| 2161 | memfree (Statistics->Min); |
| 2162 | memfree (Statistics->Max); |
| 2163 | memfree(Statistics); |
| 2164 | } // FreeStatistics |
| 2165 | |
| 2166 | /** |
| 2167 | * This routine properly frees the memory used by a BUCKETS. |
no test coverage detected