Florian Köberle a écrit :
Hello
This patch address the infinite loop found at bug 15209: http://bugs.winehq.org/show_bug.cgi?id=15209
At least one of the lines I moved in the loop doesn't make sense outsite: count -= min(count, 256); because the value of count will be always 0 after the loop.
I also moved the following line which might be at the wrong position too. About that I am not sure:
fcp->Start += 256;
Best regards, Florian Koeberle
looks a correct fix to me (moving both lines) A+