From 02cbe4775417d8de9fd85b259c7a799abd4a3164 Mon Sep 17 00:00:00 2001 From: smatz Date: Wed, 22 Oct 2008 20:23:50 +0000 Subject: (svn r14518) -Fix (r14514): forgot win32 and OS/2 files (glx) --- src/os2.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/os2.cpp') diff --git a/src/os2.cpp b/src/os2.cpp index f5ee66cb1..704ffe4a7 100644 --- a/src/os2.cpp +++ b/src/os2.cpp @@ -196,7 +196,7 @@ bool InsertTextBufferClipboard(Textbuf *tb) { uint w; - if (tb->length + length >= tb->maxlength - 1) break; + if (tb->size + length + 1 > tb->maxsize) break; w = GetCharacterWidth(FS_NORMAL, (byte)*i); if (tb->maxwidth != 0 && width + tb->width + w > tb->maxwidth) break; @@ -205,11 +205,11 @@ bool InsertTextBufferClipboard(Textbuf *tb) length++; } - memmove(tb->buf + tb->caretpos + length, tb->buf + tb->caretpos, tb->length - tb->caretpos + 1); + memmove(tb->buf + tb->caretpos + length, tb->buf + tb->caretpos, tb->size - tb->caretpos); memcpy(tb->buf + tb->caretpos, text, length); tb->width += width; tb->caretxoffs += width; - tb->length += length; + tb->size += length; tb->caretpos += length; WinCloseClipbrd(hab); -- cgit v1.2.3-70-g09d2