diff options
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/goban/sgf_parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/goban/sgf_parse.c b/apps/plugins/goban/sgf_parse.c index a2b11cf..58a5171 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; |