winex11: Remove variable datasize which is not really used from X11DRV_CLIPBOARD_ExportTextHtml.

This commit is contained in:
Gerald Pfeifer 2010-04-24 16:28:13 +02:00 committed by Alexandre Julliard
parent 40b1b8fa7e
commit ad71430328
1 changed files with 0 additions and 3 deletions

View File

@ -1809,7 +1809,6 @@ static HANDLE X11DRV_CLIPBOARD_ExportTextHtml(Display *display, Window requestor
Atom rprop, LPWINE_CLIPDATA lpdata, LPDWORD lpBytes)
{
HANDLE hdata;
UINT datasize;
LPCSTR data, field_value;
UINT fragmentstart, fragmentend, htmlsize;
HANDLE hhtmldata=NULL;
@ -1825,8 +1824,6 @@ static HANDLE X11DRV_CLIPBOARD_ExportTextHtml(Display *display, Window requestor
hdata = lpdata->hData;
datasize = GlobalSize(hdata);
data = GlobalLock(hdata);
if (!data)
{