summaryrefslogtreecommitdiff
path: root/src/ops.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ops.c')
-rw-r--r--src/ops.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ops.c b/src/ops.c
index 5d1b75f1e..5b12e68df 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -5597,7 +5597,10 @@ x11_export_final_selection()
vc.vc_type = CONV_NONE;
if (convert_setup(&vc, p_enc, (char_u *)"latin1") == OK)
{
- conv_str = string_convert(&vc, str, (int*)&len);
+ int intlen = len;
+
+ conv_str = string_convert(&vc, str, &intlen);
+ len = intlen;
if (conv_str != NULL)
{
vim_free(str);