We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9589ec8 commit dd93003Copy full SHA for dd93003
src/core/s-mold.c
@@ -501,7 +501,7 @@ STOID Mold_Url(REBVAL *value, REB_MOLD *mold)
501
else if (c >= 0x80) {
502
// to avoid need to first convert whole url to utf8,
503
// use the temp buffer for any unicode char...
504
- ulen = Encode_UTF8_Char(&buf, c);
+ ulen = Encode_UTF8_Char((REBYTE*)&buf, c);
505
for (i = 0; i < ulen; i++) {
506
dp = Form_Hex_Esc_Uni(dp, (REBUNI)buf[i]);
507
}
0 commit comments