diff options
| author | Drew DeVault <sir@cmpwn.com> | 2016-12-01 20:39:35 -0500 | 
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2016-12-01 20:39:35 -0500 | 
| commit | 1a8a42f372e1bed146623e3357dbb12d8947e654 (patch) | |
| tree | d48547dd6189be1c4f6a9f96d5e93149adb356cf /sway/security.c | |
| parent | 26752932003145c89a0cd8d39c9944d6f5917837 (diff) | |
| download | sway-1a8a42f372e1bed146623e3357dbb12d8947e654.tar.xz | |
Memory leak
Diffstat (limited to 'sway/security.c')
| -rw-r--r-- | sway/security.c | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/security.c b/sway/security.c index c72d54f6..00e5e8d7 100644 --- a/sway/security.c +++ b/sway/security.c @@ -15,6 +15,7 @@ enum secure_feature get_feature_policy(pid_t pid) {  		FEATURE_FULLSCREEN | FEATURE_KEYBOARD | FEATURE_MOUSE;  	ssize_t len = readlink(path, link, sizeof(link)); +	free(path);  	if (len < 0) {  		sway_log(L_INFO,  			"WARNING: unable to read %s for security check. Using default policy.",  | 
