Commit 63c90fb2 authored by Claes Sjofors's avatar Claes Sjofors

Pool bugfix in pool_InPool(), reference with exact segment size wasn't recognized

parent 062830d7
......@@ -966,7 +966,7 @@ pool_InPool (
pr.m = 0;
pr.b.seg = psp->seg;
pr.b.offs = (char *)adrs - (char *)psp->base;
if (pr.b.offs + size >= gpsp->size) break;
if (pr.b.offs + size > gpsp->size) break;
return pr.m;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment