VNC: Fix memory allocation (wrong structure size).
authorStefan Weil <weil@mail.berlios.de>
Sun, 24 May 2009 20:33:34 +0000 (22:33 +0200)
committerAnthony Liguori <aliguori@us.ibm.com>
Wed, 27 May 2009 14:45:26 +0000 (09:45 -0500)
commitafd3216027e3b28b0e180ac99d87e981d169b91c
tree87f5c4e92496136f16545da1d7d51bb38e22df6a
parent91a073a975b220447eb64263690f49a5494347cb
VNC: Fix memory allocation (wrong structure size).

Pointer vs addresses a VncDisplay structure,
so it is sufficient to allocate sizeof(VncDisplay)
or sizeof(*vs) bytes instead of the much larger
sizeof(VncState).

Maybe the misleading name should be fixed, too:
the code contains many places where vs is used,
sometimes it is a VncState *, sometimes it is a
VncDisplay *. vd would be a better name.

Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
vnc.c