]> git.eshelyaron.com Git - emacs.git/commitdiff
Make url-http-create-request work with non-ASCII data again
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 24 Apr 2018 12:09:41 +0000 (14:09 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 24 Apr 2018 12:09:53 +0000 (14:09 +0200)
* lisp/url/url-http.el (url-http-create-request): Ensure that the
entire request string is unibyte (bug#31248).

lisp/url/url-http.el

index d45bb323b12d51fde9c7332e9d0ed9d07dc086a1..0b95453b300be385bde71adbc1e205166e783055 100644 (file)
@@ -306,7 +306,7 @@ as the Referer-header (subject to `url-privacy-level'."
                                          (and (boundp 'proxy-info)
                                               proxy-info)
                                          url-http-target-url) nil 'any nil)))
-         (ref-url url-http-referer))
+         (ref-url (url-http--encode-string url-http-referer)))
     (if (equal "" real-fname)
        (setq real-fname "/"))
     (setq no-cache (and no-cache (string-match "no-cache" no-cache)))
@@ -355,9 +355,11 @@ as the Referer-header (subject to `url-privacy-level'."
                      (url-scheme-get-property
                       (url-type url-http-target-url) 'default-port))
                  (format
-                  "Host: %s:%d\r\n" (puny-encode-domain host)
+                  "Host: %s:%d\r\n" (url-http--encode-string
+                                     (puny-encode-domain host))
                   (url-port url-http-target-url))
-               (format "Host: %s\r\n" (puny-encode-domain host)))
+               (format "Host: %s\r\n"
+                       (url-http--encode-string (puny-encode-domain host))))
              ;; Who its from
              (if url-personal-mail-address
                  (concat