Repository: incubator-guacamole-server
Updated Branches:
  refs/heads/master c5f674340 -> 4e8096093


GUACAMOLE-391: resolve low impact memory leak


Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/commit/d2102e57
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/tree/d2102e57
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/diff/d2102e57

Branch: refs/heads/master
Commit: d2102e57059a09d84d1456873d75b3dd66342ab4
Parents: c5f6743
Author: Ilya Shipitsin <[email protected]>
Authored: Sun Sep 24 13:42:59 2017 +0500
Committer: Ilya Shipitsin <[email protected]>
Committed: Sun Sep 24 13:42:59 2017 +0500

----------------------------------------------------------------------
 src/guacd/conf-file.c | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/blob/d2102e57/src/guacd/conf-file.c
----------------------------------------------------------------------
diff --git a/src/guacd/conf-file.c b/src/guacd/conf-file.c
index f80948a..21044b6 100644
--- a/src/guacd/conf-file.c
+++ b/src/guacd/conf-file.c
@@ -195,6 +195,7 @@ guacd_config* guacd_conf_load() {
 
         if (retval != 0) {
             fprintf(stderr, "Unable to parse \"" GUACD_CONF_FILE "\".\n");
+            free(conf);
             return NULL;
         }
 

Reply via email to