BUG: Divide by Zero Causes Application ErrorLast reviewed: February 29, 1996Article ID: Q147765 |
The information in this article applies to:
SYMPTOMSAttempting to divide an integer number by zero at run time causes one of the following application error messages to be generated instead of the appropriate run-time error: Under Windows NT version 3.51:
Application Error - The exception integer division by zero occurred in the applicationUnder Windows 95:
This program has performed an illegal operation and will be shut down. If the problem persists, contact the program vendor. Details: <program> caused a divide error in module <filename> at 0137:0040109cThe following appropriate run-time error should be generated instead of the above application errors:
R6003 integer divide by 0 RESOLUTIONMake sure arithmetic expressions do not include a direct or indirect divide by zero calculation.
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATION
Sample Code to Demonstrate ProblemC Compile options needed: none
INTEGER ANSWER, NUMER, DENOM WRITE (*,*) 'This program should fail with a run-time' WRITE (*,*) 'error. No output other than these three' WRITE (*,*) 'lines should appear' CALL X (NUMER, DENOM) ANSWER = NUMER/DENOM WRITE (*,*) '**Error! integer division allowed**' WRITE (*,*) 'ANSWER=<',ANSWER,'>' END SUBROUTINE X(I1,I2) I1 = 123 I2 = 0 END |
Additional reference words: 1.00 4.00
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |