Date: Sun, 5 Mar 2000 10:05:23 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Toni Riikonen cc: djgpp AT delorie DOT com Subject: Re: Vs: DJGPP malloc problem In-Reply-To: <89omg0$l5a$1@news.koti.tpo.fi> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: dj-admin AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Fri, 3 Mar 2000, Toni Riikonen wrote: > I have these matrix-structures in my object and when i'm trying to use the > matrixes with those vertex-coordinates my compiler-(debug, breakpoint) says > that something like "Floating point exeption", or something similar.. If you have uninitialized members in the structure, they can contain binary garbage which is not a valid floating-point number. Using those garbled members in floating-point operations could certainly produce FP exceptions.