Merge pull request #756 from Hummer12007/patch-1

Fix a memory leak
This commit is contained in:
Drew DeVault 2016-07-16 17:06:38 -04:00 committed by GitHub
commit a655cb8751

View File

@ -199,6 +199,7 @@ json_object *ipc_json_get_version() {
json_object_object_add(version, "major", json_object_new_int(0));
json_object_object_add(version, "minor", json_object_new_int(0));
json_object_object_add(version, "patch", json_object_new_int(1));
free(full_version);
#else
json_object_object_add(version, "human_readable", json_object_new_string("version not found"));
json_object_object_add(version, "major", json_object_new_int(0));