From 5a724bb6dc6ea32cfb858fcb3ec09797413cdf46 Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Fri, 1 Sep 2017 22:00:59 -0400 Subject: [PATCH] Fix typo in goban Pointer wasn't dereferenced as it should be. Change-Id: I4b4993fef2290c22ab8f36ba8aafe7dcafcbfa2e --- apps/plugins/goban/sgf_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/plugins/goban/sgf_parse.c b/apps/plugins/goban/sgf_parse.c index a2b11cf490..58a517142f 100644 --- a/apps/plugins/goban/sgf_parse.c +++ b/apps/plugins/goban/sgf_parse.c @@ -712,7 +712,7 @@ handle_prop_value (enum prop_type_t type) ++buffer; } - if (buffer != '\0') + if (*buffer != '\0') { ++buffer;