remove some dead code

ulab-original
jsorg71 15 years ago
parent e825783adf
commit 35113b8f2a

@ -869,7 +869,6 @@ rdp_rdp_process_data_pdu(struct rdp_rdp* self, struct stream* s)
{ {
int data_pdu_type; int data_pdu_type;
int ctype; int ctype;
int clen;
int len; int len;
int rv; int rv;
@ -878,8 +877,7 @@ rdp_rdp_process_data_pdu(struct rdp_rdp* self, struct stream* s)
in_uint16_le(s, len); in_uint16_le(s, len);
in_uint8(s, data_pdu_type); in_uint8(s, data_pdu_type);
in_uint8(s, ctype); in_uint8(s, ctype);
in_uint16_le(s, clen); in_uint8s(s, 2); /* clen */
clen -= 18;
switch (data_pdu_type) switch (data_pdu_type)
{ {
case RDP_DATA_PDU_UPDATE: case RDP_DATA_PDU_UPDATE:

Loading…
Cancel
Save