diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2019-08-31 12:39:56 +0200 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2019-08-31 12:39:56 +0200 |
| commit | b244716b70a7142b4eb2e1ac830274ae249c14ff (patch) | |
| tree | 40b97504537798ec80ec7488803c10109f3d031b | |
| parent | b8f857448a835db045b62c8f445782b761105f36 (diff) | |
| download | cc4group-b244716b70a7142b4eb2e1ac830274ae249c14ff.tar.gz cc4group-b244716b70a7142b4eb2e1ac830274ae249c14ff.zip | |
Fix not initializing the root group entry's path
| -rw-r--r-- | src/cc4group.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cc4group.c b/src/cc4group.c index 4be201c..b5f443c 100644 --- a/src/cc4group.c +++ b/src/cc4group.c @@ -1190,6 +1190,7 @@ static void cc4group_init(CC4Group* const this) this->root.parent = NULL; this->root.children = NULL; this->root.core.Directory = true; + this->root.path = NULL; this->cleanupJobs = CleanUpJobListNew(); |
