We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b45d1ad commit e90695cCopy full SHA for e90695c
test/test_value.cpp
@@ -14,14 +14,14 @@ static std::string _test_string_param(std::string param) {
14
void test_value() {
15
{
16
int a = 0;
17
- char *szBrackets = new char[200001];
18
- for (; a < 100000; a++) {
+ char *szBrackets = new char[2001];
+ for (; a < 1000; a++) {
19
szBrackets[a] = '[';
20
}
21
- for (; a < 200000; a++) {
+ for (; a < 2000; a++) {
22
szBrackets[a] = ']';
23
24
- szBrackets[200000] = 0;
+ szBrackets[2000] = 0;
25
Hjson::Unmarshal(szBrackets);
26
delete[] szBrackets;
27
0 commit comments