about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2022-02-02 10:22:04 +0100
committerGitHub <noreply@github.com>2022-02-02 10:22:04 +0100
commite0f75e0b528523696de451da80145677ac4295fe (patch)
tree0769965874873cfdb0bfde726cc38c2a04e2b8d0 /src/xmpp
parent832f28bcb2989a7e9f93dd75009a6dc4ef80b581 (diff)
parent569525c6c77552809298c9828e0b1b1c6d6e4c34 (diff)
downloadprofani-tty-e0f75e0b528523696de451da80145677ac4295fe.tar.gz
Merge pull request #1633 from profanity-im/fix-split-url-once-more
Fix `_split_url()` once more
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/connection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xmpp/connection.c b/src/xmpp/connection.c
index 3b389814..57de5ad1 100644
--- a/src/xmpp/connection.c
+++ b/src/xmpp/connection.c
@@ -935,7 +935,7 @@ _split_url(const char* alturi, gchar** host, gint* port)
     char* last = strrchr(alturi, ':');
     if (first) {
         if (first == last) {
-            hostlen = last - alturi;
+            hostlen = last - alturi + 1;
             if (!strtoi_range(last + 1, port, 1, 65535, NULL))
                 return FALSE;
         } else {
@@ -949,7 +949,7 @@ _split_url(const char* alturi, gchar** host, gint* port)
                 *port = 0;
             } else {
                 /* `[ip:v6]:port` */
-                hostlen = last - alturi;
+                hostlen = last - alturi + 1;
                 if (!strtoi_range(last + 1, port, 1, 65535, NULL))
                     return FALSE;
             }