]> git.eshelyaron.com Git - emacs.git/commitdiff
Make timeouts work more reliably in url-retrieve-synchronously
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 19 Jul 2020 20:41:28 +0000 (22:41 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 19 Jul 2020 20:41:28 +0000 (22:41 +0200)
* lisp/url/url.el (url-retrieve-synchronously): Ensure that the
processes have been killed on timeouts before returning the buffer
(bug#34607).

lisp/url/url.el

index 12a8a9c2e21bded9294cbddadc44fb01bd70f304..367af1b5a900ea8e92961de9c052655c74c7ac38 100644 (file)
@@ -300,8 +300,15 @@ how long to wait for a response before giving up."
              (when quit-flag
                (delete-process proc))
               (setq proc (and (not quit-flag)
-                             (get-buffer-process asynch-buffer)))))))
-      asynch-buffer)))
+                             (get-buffer-process asynch-buffer))))))
+        ;; On timeouts, make sure we kill any pending processes.
+        ;; There may be more than one if we had a redirect.
+        (when (process-live-p proc)
+          (delete-process proc))
+        (when-let ((aproc (get-buffer-process asynch-buffer)))
+          (when (process-live-p aproc)
+            (delete-process aproc)))))
+    asynch-buffer))
 
 ;; url-mm-callback called from url-mm, which requires mm-decode.
 (declare-function mm-dissect-buffer "mm-decode"