diff options
| author | Daniel Golle | 2021-10-12 22:59:10 +0000 |
|---|---|---|
| committer | Daniel Golle | 2021-10-12 23:35:43 +0000 |
| commit | 6398e0541a693df8a267b9ee77b9e96cbaf97abd (patch) | |
| tree | 41226f07c8c067aaf03a68c7e43815d710f522fb | |
| parent | 97bcdcf107ddf36cbbec5cafe85f6440476d0418 (diff) | |
| download | procd-6398e0541a693df8a267b9ee77b9e96cbaf97abd.tar.gz | |
uxc: don't free the stack
It's generally a bad idea to free variables which are stored on stack.
Better don't do that ;)
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
| -rw-r--r-- | uxc.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -590,9 +590,6 @@ static int uxc_create(char *name, bool immediately) ret = EIO; } - free(jailname); - free(path); - return ret; } |