addons/51degrees/51d.c:1073:8: error: Uninitialized variable:
_51d_prop_name.name [uninitvar]
---
addons/51degrees/51d.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/addons/51degrees/51d.c b/addons/51degrees/51d.c
index a23b468d6..5b3db1286 100644
--- a/addons/51degrees/51d.c
+++ b/addons/51degrees/51d.c
@@ -1050,7 +1050,7 @@ static int init_51degrees(void)
static void deinit_51degrees(void)
{
- struct _51d_property_names *_51d_prop_name, *_51d_prop_nameb;
+ struct _51d_property_names *_51d_prop_name = NULL, *_51d_prop_nameb =
NULL;
#if defined(FIFTYONEDEGREES_H_PATTERN_INCLUDED) ||
defined(FIFTYONEDEGREES_H_TRIE_INCLUDED)
free(global_51degrees.header_names);
--
2.46.0.windows.1