From: "Hazel Moore" Newsgroups: comp.os.msdos.djgpp Subject: DJGPP Bug? Date: Tue, 19 Dec 2000 02:56:28 -0800 Organization: Posted via Supernews, http://www.supernews.com Message-ID: X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 X-Complaints-To: newsabuse AT supernews DOT com Lines: 19 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Here is a bug that I think should be verified by you guys before I report it (as it could be my fault). This is an exact source code listing: // this program demonstates a bug, generating a callframe traceback struct Intptrholder { int * intinstruct; }; int main() { int * intptr; Intptrholder * intptrholder; intptrholder->intinstruct = intptr; return 0; }