process_data_pdu never returns True nowadays, so the comment about the

disc variable is incorrect. Removed the variable, since it's always
False.



git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/rdesktop/trunk@1508 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Peter Åstrand 2009-08-27 07:30:32 +00:00
parent 55eaf2a098
commit ea46f1729d

5
rdp.c
View File

@ -1413,7 +1413,6 @@ RD_BOOL
rdp_loop(RD_BOOL * deactivated, uint32 * ext_disc_reason)
{
uint8 type;
RD_BOOL disc = False; /* True when a disconnect PDU was received */
RD_BOOL cont = True;
STREAM s;
@ -1436,15 +1435,13 @@ rdp_loop(RD_BOOL * deactivated, uint32 * ext_disc_reason)
return process_redirect_pdu(s);
break;
case RDP_PDU_DATA:
disc = process_data_pdu(s, ext_disc_reason);
process_data_pdu(s, ext_disc_reason);
break;
case 0:
break;
default:
unimpl("PDU %d\n", type);
}
if (disc)
return False;
cont = g_next_packet < s->end;
}
return True;