Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!samsung!uunet!zephyr.ens.tek.com!uw-beaver!sumax!nwnexus!pilchuck!dataio!bright From: bright@Data-IO.COM (Walter Bright) Newsgroups: comp.lang.c++ Subject: Re: Zortech Problem: heap corrupted Message-ID: <2613@dataio.Data-IO.COM> Date: 6 Aug 90 18:14:03 GMT References: <24059.26BA6CC2@stjhmc.fidonet.org> Organization: Data I/O Corporation; Redmond, WA Lines: 18 < A friend of mine is using Zortech 2.0. He uses hashed search tables and < binary tree search tables. After some insertions into both tables he < gets the error message: heap corrupted. < Is this is known error of Zortech's C++? Try this program with your favorite C compiler: #include main() { char *p; p = (char *) malloc(10); free(p); free(p); } With Zortech, you'll get a "Heap is corrupted" message on the second free. With some other compilers, you'll get silence, but this does not mean that the program worked.