Skip to content

Commit

Permalink
libcacard: Fix compilation for older versions of glib (bug #1258168)
Browse files Browse the repository at this point in the history
See https://bugs.launchpad.net/bugs/1258168

libcacard/vscclient.c: In function 'do_socket_read':
libcacard/vscclient.c:410: warning: implicit declaration of function 'g_warn_if_reached'
libcacard/vscclient.c:410: warning: nested extern declaration of 'g_warn_if_reached'
libcacard/vscclient.c: In function 'main':
libcacard/vscclient.c:763: warning: implicit declaration of function 'g_byte_array_unref'
libcacard/vscclient.c:763: warning: nested extern declaration of 'g_byte_array_unref'
...
libcacard/vscclient.o: In function `do_socket_read':
libcacard/vscclient.c:410: undefined reference to `g_warn_if_reached'
libcacard/vscclient.o: In function `main':
libcacard/vscclient.c:763: undefined reference to `g_byte_array_unref'

g_warn_if_reached was added in glib 2.16, and g_byte_array_unref is
supported since glib 2.22. QEMU requires glib 2.12, so both names must
not be used.

Instead of showing a warning for code which should not be reached,
vscclient better stop running, so g_warn_if_reached is not useful for
vscclient.

In libcacard/vsclient.c, g_byte_array_unref can be replaced by
g_byte_array_free. This is not generally true, so adding a compatibility
layer in include/glib-compat.h is no option here.

Reported-by: Laurent Desnogues <[email protected]>
Reported-by: Don Slutz <[email protected]>
Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil authored and Alon Levy committed Dec 9, 2013
1 parent a1d22a3 commit 5ad04fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libcacard/vscclient.c
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ do_socket_read(GIOChannel *source,
}
break;
default:
g_warn_if_reached();
g_assert_not_reached();
return FALSE;
}

Expand Down Expand Up @@ -760,7 +760,7 @@ main(

g_io_channel_unref(channel_stdin);
g_io_channel_unref(channel_socket);
g_byte_array_unref(socket_to_send);
g_byte_array_free(socket_to_send, TRUE);

closesocket(sock);
return 0;
Expand Down

0 comments on commit 5ad04fb

Please sign in to comment.