After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 633691 - vnc_connection_server_cut_text
vnc_connection_server_cut_text
Status: RESOLVED FIXED
Product: gtk-vnc
Classification: Other
Component: general
0.4.x
Other Linux
: Normal critical
: ---
Assigned To: gtk-vnc-maint
gtk-vnc-maint
: 636811 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2010-11-01 10:56 UTC by Alberto Gonzalez
Modified: 2011-03-21 23:56 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Alberto Gonzalez 2010-11-01 10:56:20 UTC
I think there is a bug on version 0.4.x


On function "vnc_connection_server_cut_text"

    text = g_string_new_len ((const gchar *)data, len);
    sigdata.params.text = text;

should be


   text = g_string_new_len ((const gchar *)data, len);
   sigdata.params.text = text->str;
Comment 1 Daniel P. Berrange 2010-11-03 14:36:27 UTC
A slightly extended fix applied here:

http://git.gnome.org/browse/gtk-vnc/commit/?id=f01086725f1996af7396de83632fe5ec1dc0ead5
Comment 2 Jeremy Nickurak 2011-02-09 18:22:59 UTC
Confirming that that fixes the issue here. Thanks!
Comment 3 Acorn Pooley 2011-03-21 23:56:35 UTC
*** Bug 636811 has been marked as a duplicate of this bug. ***