| 1179 | } |
| 1180 | |
| 1181 | void SQLiteDB::freeMetadata(metadata_t *metadata) |
| 1182 | { |
| 1183 | while(metadata) { |
| 1184 | metadata_t *current = metadata; |
| 1185 | metadata = metadata->next_metadata; |
| 1186 | delete current; |
| 1187 | } |
| 1188 | } |
| 1189 | |
| 1190 | int SQLiteDB::getRootItems(int root_ohfi, metadata_t **metadata) |
| 1191 | { |
no outgoing calls
no test coverage detected