forked from Telodendria/Telodendria
Fix a few segfaults in http and json.
This commit is contained in:
parent
c206ec495d
commit
88f73a6131
3 changed files with 5 additions and 2 deletions
|
@ -126,6 +126,7 @@ recipe_docs() {
|
|||
recipe_cytoplasm() {
|
||||
cd Cytoplasm
|
||||
export TLS_IMPL
|
||||
export CFLAGS
|
||||
if ! sh make.sh; then
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
@ -199,8 +199,11 @@ Main(Array * args)
|
|||
|
||||
HttpRequestSendHeaders(cx);
|
||||
StreamCopy(in, HttpClientStream(cx));
|
||||
if (in != StreamStdin())
|
||||
{
|
||||
StreamClose(in);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
char *lenStr;
|
||||
|
|
|
@ -189,7 +189,6 @@ encode(char *str)
|
|||
JsonEncodeValue(val, StreamStdout(), JSON_DEFAULT);
|
||||
JsonValueFree(val);
|
||||
StreamPutc(StreamStdout(), '\n');
|
||||
JsonValueFree(val);
|
||||
}
|
||||
|
||||
int
|
||||
|
|
Loading…
Reference in a new issue