Browse Source

Fix off-by-one error in escape_string()

Github: fixes openvpn/openvpn-gui#548

Signed-off-by: Selva Nair <selva.nair@gmail.com>
pull/683/head
Selva Nair 7 months ago committed by Lev Stipakov
parent
commit
fdf457d3a6
  1. 2
      misc.c

2
misc.c

@ -208,7 +208,7 @@ escape_string(const char *input)
return NULL; return NULL;
} }
out = buf; out = buf;
memmove(out + pos + 1, out + pos, len - pos + 1); memmove(out + pos + 1, out + pos, len - pos);
out[pos] = '\\'; out[pos] = '\\';
pos += 1; pos += 1;
} }

Loading…
Cancel
Save