Github user necouchman commented on a diff in the pull request:
https://github.com/apache/incubator-guacamole-server/pull/108#discussion_r140036341
--- Diff: src/guacd/conf-file.c ---
@@ -203,6 +203,7 @@ guacd_config* guacd_conf_load() {
/* Notify of errors preventing reading */
else if (errno != ENOENT) {
fprintf(stderr, "Unable to open \"" GUACD_CONF_FILE "\": %s\n",
strerror(errno));
+ free(conf);
--- End diff --
Please check your style - this indentation should match the indentation
around it. See the following document:
http://guacamole.incubator.apache.org/guac-style/
---