# | Line 88 | Line 88 | void Smersh::parse(istream& sin, Environ | |
---|---|---|
88 | if (env.get("REQUEST_METHOD") == "POST") | |
89 | { | |
90 | streamsize length(lexical_cast<streamsize>(env.get("CONTENT_LENGTH"))); | |
91 | < | char* content = new char[length]; |
91 | > | char* content(new char[length]); |
92 | ||
93 | sin.read(content, length); | |
94 | query.write(content, length); |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |