Code taken from v1.3.2.0
pSubPD->privFlags ^= (unsigned)~TRDP_TIMED_OUT; /* Reset time out flag (#151) */
This operation has side effects other bits. I'd expect the use of an BITAND
pSubPD->privFlags &= (unsigned)~TRDP_TIMED_OUT;
Yep: Last minute bug ;-( Will go into release 1.3.3
Fixed both in 1.3.2 (as patch) and 1.3.3
Log in to post a comment.
Yep: Last minute bug ;-(
Will go into release 1.3.3
Fixed both in 1.3.2 (as patch) and 1.3.3