diff options
author | Tor Lillqvist <tml@iki.fi> | 2005-01-07 14:36:08 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-01-07 14:36:08 +0000 |
commit | 47806a7be359a5e0ca07ea03046403fdee169146 (patch) | |
tree | 4209236edbf5d5e43d4994dad191b9f47e3acbd5 /gdk | |
parent | 802e75001484464353a3841eabd27ab7426fd674 (diff) | |
download | gdk-pixbuf-47806a7be359a5e0ca07ea03046403fdee169146.tar.gz |
Fix braino. (#163232, Arnaud Charlet)
2005-01-07 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkselection-win32.c (_gdk_selection_property_store):
Fix braino. (#163232, Arnaud Charlet)
Diffstat (limited to 'gdk')
-rw-r--r-- | gdk/win32/gdkselection-win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/win32/gdkselection-win32.c b/gdk/win32/gdkselection-win32.c index 924bc6da2..43e51cb9b 100644 --- a/gdk/win32/gdkselection-win32.c +++ b/gdk/win32/gdkselection-win32.c @@ -158,7 +158,7 @@ _gdk_selection_property_store (GdkWindow *owner, return; } else - prop->length = strlen (prop->data + 1); + prop->length = strlen (prop->data) + 1; } else { |