| 98 | } |
| 99 | |
| 100 | void setVideoPath(const char* path) { |
| 101 | if (VIDEO_PATH) { |
| 102 | free(VIDEO_PATH); |
| 103 | } |
| 104 | VIDEO_PATH = static_cast<char*>(malloc(strlen(path) + 1)); |
| 105 | strcpy(VIDEO_PATH, path); |
| 106 | } |
nothing calls this directly
no outgoing calls
no test coverage detected