mirror of
https://gitee.com/openharmony/third_party_jsoncpp
synced 2024-11-26 17:01:57 +00:00
update Fix.patch.
Signed-off-by: 冉召宇 <ranzhaoyu1@huawei.com>
This commit is contained in:
parent
38f6519eac
commit
8786851010
21
Fix.patch
21
Fix.patch
@ -0,0 +1,21 @@
|
||||
diff --git a/src/lib_json/json_reader.cpp b/src/lib_json/json_reader.cpp
|
||||
--- a/src/lib_json/json_reader.cpp
|
||||
+++ b/src/lib_json/json_reader.cpp
|
||||
@@ -773,7 +773,7 @@
|
||||
while (current < location && current != end_) {
|
||||
Char c = *current++;
|
||||
if (c == '\r') {
|
||||
- if (*current == '\n')
|
||||
+ if (current != end_ && *current == '\n')
|
||||
++current;
|
||||
lastLineStart = current;
|
||||
++line;
|
||||
@@ -1826,7 +1826,7 @@
|
||||
while (current < location && current != end_) {
|
||||
Char c = *current++;
|
||||
if (c == '\r') {
|
||||
- if (*current == '\n')
|
||||
+ if (current != end_ && *current == '\n')
|
||||
++current;
|
||||
lastLineStart = current;
|
||||
++line;
|
Loading…
Reference in New Issue
Block a user