fix cut-n-paste bug which breaks big-endian machines (fixes #73585)
2002-04-12 jacob berkman <jacob@ximian.com> * gdk/x11/xsettings-client.c (fetch_card8): fix cut-n-paste bug which breaks big-endian machines (fixes #73585)
This commit is contained in:
parent
c652859042
commit
0a4977915b
@ -1,3 +1,8 @@
|
||||
2002-04-12 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gdk/x11/xsettings-client.c (fetch_card8): fix cut-n-paste bug
|
||||
which breaks big-endian machines (fixes #73585)
|
||||
|
||||
2002-04-12 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_real_remove): relocate the
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-04-12 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gdk/x11/xsettings-client.c (fetch_card8): fix cut-n-paste bug
|
||||
which breaks big-endian machines (fixes #73585)
|
||||
|
||||
2002-04-12 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_real_remove): relocate the
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-04-12 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gdk/x11/xsettings-client.c (fetch_card8): fix cut-n-paste bug
|
||||
which breaks big-endian machines (fixes #73585)
|
||||
|
||||
2002-04-12 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_real_remove): relocate the
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-04-12 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gdk/x11/xsettings-client.c (fetch_card8): fix cut-n-paste bug
|
||||
which breaks big-endian machines (fixes #73585)
|
||||
|
||||
2002-04-12 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_real_remove): relocate the
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-04-12 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gdk/x11/xsettings-client.c (fetch_card8): fix cut-n-paste bug
|
||||
which breaks big-endian machines (fixes #73585)
|
||||
|
||||
2002-04-12 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_real_remove): relocate the
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-04-12 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gdk/x11/xsettings-client.c (fetch_card8): fix cut-n-paste bug
|
||||
which breaks big-endian machines (fixes #73585)
|
||||
|
||||
2002-04-12 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_real_remove): relocate the
|
||||
|
@ -169,7 +169,7 @@ fetch_card8 (XSettingsBuffer *buffer,
|
||||
if (BYTES_LEFT (buffer) < 1)
|
||||
return XSETTINGS_ACCESS;
|
||||
|
||||
*result = *(CARD32 *)buffer->pos;
|
||||
*result = *(CARD8 *)buffer->pos;
|
||||
buffer->pos += 1;
|
||||
|
||||
return XSETTINGS_SUCCESS;
|
||||
|
Loading…
Reference in New Issue
Block a user