From 75ce85227d8c0f1138c2c10581f43346fc30215d Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Thu, 11 Dec 2014 00:59:06 +0100 Subject: [PATCH] Do not rely on malloc zeroing memory. --- decode.c | 1 + 1 file changed, 1 insertion(+) diff --git a/decode.c b/decode.c index fa87d3d..40fc3c8 100644 --- a/decode.c +++ b/decode.c @@ -135,6 +135,7 @@ new_move_structure(void) move->terminating_result = NULL; move->epd = NULL; + move->bpfen = NULL; move->Nags = NULL; move->Comment = NULL; move->Variants = NULL; -- 2.39.2