FCurlHttpResponse doesn't handle unspecified ContentLength header

Here is a workaround:

int32 FCurlHttpResponse::GetContentLength()
{
	return ContentLength < 0 ? Payload.Num() : ContentLength;
}