X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/5ba3f43ea354af8ad55bea84372a2bc834d8757c..94ff46dc2849db4d43eaaf144872decc522aafb4:/bsd/libkern/url_encode.c?ds=inline diff --git a/bsd/libkern/url_encode.c b/bsd/libkern/url_encode.c index 0e3cf1562..353dbbdce 100644 --- a/bsd/libkern/url_encode.c +++ b/bsd/libkern/url_encode.c @@ -73,7 +73,7 @@ url_decode(char *str) /* overwrite the '%' with the new char, and bump the rest of the * string down a few characters */ *esc++ = c; - str = memmove(esc, str, strlen(str)+1); + str = memmove(esc, str, strlen(str) + 1); } } else { str++;