| 90 | } |
| 91 | |
| 92 | void setConfigBasePath(const char* path) { |
| 93 | if (CONFIG_BASE_PATH) { |
| 94 | free(CONFIG_BASE_PATH); |
| 95 | } |
| 96 | CONFIG_BASE_PATH = static_cast<char*>(malloc(strlen(path) + 1)); |
| 97 | strcpy(CONFIG_BASE_PATH, path); |
| 98 | } |
| 99 | |
| 100 | void setVideoPath(const char* path) { |
| 101 | if (VIDEO_PATH) { |
nothing calls this directly
no outgoing calls
no test coverage detected