mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-21 22:28:37 -05:00
Yes we do mean assignment. Bah.
[originally from svn r5135]
This commit is contained in:
parent
cd58af8938
commit
9318800643
2
ssh.c
2
ssh.c
@ -5799,7 +5799,7 @@ static void ssh2_msg_channel_request(Ssh ssh, struct Packet *pktin)
|
|||||||
if (q >= 0 && q+4 <= len) { \
|
if (q >= 0 && q+4 <= len) { \
|
||||||
q = q + 4 + GET_32BIT(p+q); \
|
q = q + 4 + GET_32BIT(p+q); \
|
||||||
if (q >= 0 && q+4 <= len && \
|
if (q >= 0 && q+4 <= len && \
|
||||||
(q = q + 4 + GET_32BIT(p+q)) && q == len) \
|
((q = q + 4 + GET_32BIT(p+q))!= 0) && q == len) \
|
||||||
result = TRUE; \
|
result = TRUE; \
|
||||||
} \
|
} \
|
||||||
} while(0)
|
} while(0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user