================= FS_FreeFileList ================= */
| 2163 | ================= |
| 2164 | */ |
| 2165 | void FS_FreeFileList( char **fileList ) { |
| 2166 | //rwwRMG - changed to fileList to not conflict with list type |
| 2167 | int i; |
| 2168 | |
| 2169 | FS_AssertInitialised(); |
| 2170 | |
| 2171 | if ( !fileList ) { |
| 2172 | return; |
| 2173 | } |
| 2174 | |
| 2175 | for ( i = 0 ; fileList[i] ; i++ ) { |
| 2176 | Z_Free( fileList[i] ); |
| 2177 | } |
| 2178 | |
| 2179 | Z_Free( fileList ); |
| 2180 | } |
| 2181 | |
| 2182 | |
| 2183 | /* |
no test coverage detected