memset args were reversed
This commit is contained in:
parent
38ebabcbef
commit
bfd3f69afc
1 changed files with 1 additions and 1 deletions
|
|
@ -1345,7 +1345,7 @@ static SDL_Surface *render_text_w(TuxPaint_Font * restrict font,
|
||||||
|
|
||||||
utfstr_max = (sizeof(char) * 4 * (wcslen(str) + 1));
|
utfstr_max = (sizeof(char) * 4 * (wcslen(str) + 1));
|
||||||
utfstr = (char *) malloc(utfstr_max);
|
utfstr = (char *) malloc(utfstr_max);
|
||||||
memset(utfstr, utfstr_max, 0);
|
memset(utfstr, 0, utfstr_max);
|
||||||
|
|
||||||
j = 0;
|
j = 0;
|
||||||
for (i = 0; i < wcslen(str); i++)
|
for (i = 0; i < wcslen(str); i++)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue