Skip to content
Snippets Groups Projects
Commit 09ce5e80 authored by Guy Albertelli's avatar Guy Albertelli Committed by Alexandre Julliard
Browse files

Fixed loop test for negative value.

parent 5483799e
No related branches found
No related tags found
No related merge requests found
......@@ -1289,7 +1289,7 @@ void SPY_DumpStructure (UINT msg, BOOL enter, LPARAM structure)
if (p->len > 0) {
int i;
q = (UINT *)(pnmh + 1);
for(i=0; i<p->len-12; i+=16) {
for(i=0; i<((INT)p->len)-12; i+=16) {
TRACE("NM extra [%04x] %08x %08x %08x %08x\n",
i, *q, *(q+1), *(q+2), *(q+3));
q += 4;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment