fix memory leak in swaymsg

This commit is contained in:
Tony Crisci 2017-12-18 17:52:50 -05:00
parent f2985000f3
commit 8b4d81114a
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ int main(int argc, char **argv) {
} else {
pretty_print(type, obj);
}
free(obj);
json_object_put(obj);
}
}
close(socketfd);