Peter Urbanec <[email protected]> writes: > Could someone please explain to me what's going on here? Quick look at > the code indicates that there is a 4MB heap used for "views" (I have > no idea what these are) and presumably that heap is exhausted. Is this > likely a resource leak somewhere?
Not necessarily. The view structures are larger on 64-bit, and you can of course create a lot more of them, so it's possible to run out of heap space. Probably the heap should expand dynamically on 64-bit. -- Alexandre Julliard [email protected]
