mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-06-30 19:12:48 -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:
@ -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 (lpDx_maybe) lpDx_maybe = lpDx;
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
int i;
|
||||
/* only last char has dx width in SURROGATE PAIR and
|
||||
|
Reference in New Issue
Block a user