diff --git a/src/winio.c b/src/winio.c
index 2d0b23aa2f21286244edfb63a35dcf000e36a6bb..c07e5c142f855a0946c8950fe69e6d5738b444c4 100644
--- a/src/winio.c
+++ b/src/winio.c
@@ -2287,7 +2287,15 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool
     assert(column <= start_col);
 
     alloc_len = display_string_len(buf + start_index, start_col,
-	start_col + len) + 2;
+	start_col + len);
+    alloc_len +=
+#ifdef NANO_WIDE
+	MB_CUR_MAX
+#else
+	1
+#endif
+	 * 2;
+
     converted = charalloc(alloc_len + 1);
     index = 0;
 
@@ -2464,8 +2472,6 @@ char *display_string(const char *buf, size_t start_col, size_t len, bool
     }
 
     /* Make sure that converted is at most len columns wide. */
-    converted[index] = '\0';
-    index = actual_x(converted, len);
     null_at(&converted, index);
 
     return converted;