* url-http.el (url-http-wait-for-headers-change-function): Protect

against url-http-response-status for degenerate documents.
This commit is contained in:
Lars Magne Ingebrigtsen
2010-10-04 21:05:53 +02:00
parent 51b403bdcb
commit 697ebdb06b
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2010-10-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
* url-http.el (url-http-wait-for-headers-change-function): Protect
against url-http-response-status for degenerate documents.
2010-10-03 Glenn Morris <rgm@gnu.org>
* url-util.el (url-get-url-filename-chars): Don't eval-and-compile.

View File

@@ -1054,7 +1054,8 @@ the end of the document."
end-of-headers t)
(url-http-clean-headers)))
(if (not end-of-headers)
(if (or (not end-of-headers)
(not url-http-response-status))
;; Haven't seen the end of the headers yet, need to wait
;; for more data to arrive.
nil