From 125ce3d11647a3309cb8c98692f5ba2ac6738330 Mon Sep 17 00:00:00 2001 From: Vic Lee Date: Fri, 5 Aug 2011 23:07:09 +0800 Subject: [PATCH] rdpdr: fix incorrect variable. --- channels/rdpdr/rdpdr_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/rdpdr/rdpdr_main.c b/channels/rdpdr/rdpdr_main.c index 162b695..89f5d63 100644 --- a/channels/rdpdr/rdpdr_main.c +++ b/channels/rdpdr/rdpdr_main.c @@ -156,7 +156,7 @@ static void rdpdr_send_device_list_announce_request(rdpdrPlugin* rdpdr, boolean count_pos = stream_get_pos(data_out); count = 0; - stream_seek_uint32(out_data); /* deviceCount */ + stream_seek_uint32(data_out); /* deviceCount */ for (item = rdpdr->devman->devices->head; item; item = item->next) { -- 2.7.4