Clear the intPool, freeing any previously allocated ints
| 198 | |
| 199 | // Clear the intPool, freeing any previously allocated ints |
| 200 | static void ClearIntPool() |
| 201 | { |
| 202 | for (int i = 0; i < MAX_PARAMS; i++) |
| 203 | { |
| 204 | if (intPoolInitialized && intPool[i]) |
| 205 | free(intPool[i]); |
| 206 | intPool[i] = NULL; |
| 207 | } |
| 208 | intPoolInitialized = true; |
| 209 | } |
| 210 | |
| 211 | // Clear the shortPool, freeing any previously allocated ints |
| 212 | static void ClearShortPool() |