From 874f60cbaa3df80e1f1e3ecc6c820d067c761674 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Fri, 25 May 2018 10:21:35 -0700 Subject: [PATCH] SCP: Fix potentially uninitialized variable reference --- scp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scp.c b/scp.c index 563e2382..192992ea 100644 --- a/scp.c +++ b/scp.c @@ -13817,7 +13817,7 @@ static t_bool _value_of (const char *data, t_svalue *svalue, char *string, size_ CONST char *gptr; if (isalpha (*data)) { - REG *rptr; + REG *rptr = NULL; DEVICE *dptr = sim_dfdev; const char *dot;