You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
888 B
29 lines
888 B
From 2f3fa91679b449d3079152fb847c71350815df49 Mon Sep 17 00:00:00 2001
|
|
From: Kohei Yoshida <kohei.yoshida@gmail.com>
|
|
Date: Thu, 24 Sep 2020 20:06:53 -0400
|
|
Subject: [PATCH 1/2] Don't forget to initialize this struct member.
|
|
|
|
This ended up becoming "true" on a 32-bit debian platform, though
|
|
this is not strictly a 32-bit build issue...
|
|
|
|
Related to #129.
|
|
---
|
|
src/parser/parser_global.cpp | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/parser/parser_global.cpp b/src/parser/parser_global.cpp
|
|
index 4699a17b..a98d3dbc 100644
|
|
--- a/src/parser/parser_global.cpp
|
|
+++ b/src/parser/parser_global.cpp
|
|
@@ -155,6 +155,7 @@ parse_quoted_string_state parse_string_with_escaped_char(
|
|
ret.str = nullptr;
|
|
ret.length = 0;
|
|
ret.transient = true;
|
|
+ ret.has_control_character = false;
|
|
|
|
// Start the buffer with the string we've parsed so far.
|
|
buffer.reset();
|
|
--
|
|
2.25.1
|
|
|