mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-04-09 23:28:06 -05:00
Bug fix from Robert de Bath: since lpDx_maybe is always supposed to
equal either lpDx or NULL, we mustn't forget to update it when we realloc lpDx. [originally from svn r9526]
This commit is contained in:
parent
b73527e641
commit
16a02bb9fc
@ -3515,12 +3515,13 @@ void do_text_internal(Context ctx, int x, int y, wchar_t *text, int len,
|
||||
len += 2;
|
||||
}
|
||||
|
||||
if (len > lpDx_len) {
|
||||
if (len > lpDx_len) {
|
||||
lpDx_len = len * 9 / 8 + 16;
|
||||
lpDx = sresize(lpDx, lpDx_len, int);
|
||||
}
|
||||
}
|
||||
if (len > lpDx_len) {
|
||||
lpDx_len = len * 9 / 8 + 16;
|
||||
lpDx = sresize(lpDx, lpDx_len, int);
|
||||
|
||||
if (lpDx_maybe) lpDx_maybe = lpDx;
|
||||
}
|
||||
|
||||
{
|
||||
int i;
|
||||
/* only last char has dx width in SURROGATE PAIR and
|
||||
|
Loading…
x
Reference in New Issue
Block a user