GNOME Bugzilla – Bug 163232
Bad handling of paste under Windows
Last modified: 2005-01-07 14:38:21 UTC
Doing a copy/paste inside a gtktextview under Win32 will sometimes fail to paste the text properly. This is due to a logic error in gdk/win32/gdkselection-win32.c, function _gdk_selection_property_store: prop->length = strlen (prop->data + 1); instead of prop->length = strlen (prop->data) + 1; I love C... Arno
Blush. Fixed in HEAD and gtk-2-4.