MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / windows_log_path_close

Function windows_log_path_close

src/daemon/service.c:796–804  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

794} windows_log_path_t;
795
796static void windows_log_path_close(windows_log_path_t *path) {
797 if (!path) {
798 return;
799 }
800 free(path->wide);
801 free(path->rotated);
802 free(path->lock);
803 memset(path, 0, sizeof(*path));
804}
805
806static bool windows_log_path_open(const char *log_path, windows_log_path_t *path) {
807 size_t length = 0;

Callers 2

windows_log_path_openFunction · 0.85
windows_log_appendFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected