| 1106 | } |
| 1107 | |
| 1108 | void steamclient_free_path_array( const char **path_array ) |
| 1109 | { |
| 1110 | const char **path; |
| 1111 | if (!path_array) return; |
| 1112 | for (path = path_array; *path; path++) free( *(char **)path ); |
| 1113 | free( path_array ); |
| 1114 | } |
| 1115 | |
| 1116 | /* Returns: |
| 1117 | * - if successful, the number of bytes written to dst, including the NULL terminator; |
no outgoing calls
no test coverage detected