diff options
| -rwxr-xr-x | indra/llcorehttp/_httpoprequest.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/llcorehttp/_httpoprequest.cpp b/indra/llcorehttp/_httpoprequest.cpp index 3a51f898ab..503c04dfa7 100755 --- a/indra/llcorehttp/_httpoprequest.cpp +++ b/indra/llcorehttp/_httpoprequest.cpp @@ -843,7 +843,7 @@ int HttpOpRequest::seekCallback(void *userdata, curl_off_t offset, int origin)      else          return 2; -    if ((newPos < 0) || (newPos >= op->mReqBody->size())) +    if (newPos >= op->mReqBody->size())      {          LL_WARNS(LOG_CORE) << "Attempt to seek to position outside post body." << LL_ENDL;          return 2; | 
