Skip to content

Commit

Permalink
Don't set OBJECT_VALIDATING when recreating the request structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-davis authored and Juliusz Chroboczek committed Jan 12, 2011
1 parent df97731 commit 56b76a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client.c
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,8 @@ httpClientNoticeRequest(HTTPRequestPtr request, int novalidate)
conditional =
conditional && !(request->object->cache_control & CACHE_MISMATCH);

request->object->flags |= OBJECT_VALIDATING;
if(!(request->object->flags & OBJECT_INPROGRESS))
request->object->flags |= OBJECT_VALIDATING;
rc = request->object->request(request->object,
conditional ? METHOD_CONDITIONAL_GET :
request->method,
Expand Down

0 comments on commit 56b76a8

Please sign in to comment.