BUG: READ w/ Numeric Literal Subscript Causes Access Violation

Last reviewed: July 12, 1995
Article ID: Q130807
The information in this article applies to:
  • Microsoft FORTRAN PowerStation 32 for Windows NT, version 1.0

SYMPTOMS

Exporting an array in a COMMON block from a dynamic-link library (DLL) and attempting to read a member of the array by using a numeric literal as a subscript in the READ statement may generate an access violation.

RESOLUTION

Here are two ways to work around this problem:

  • Use INTEGER variables instead of numeric literals as subscripts when accessing COMMON arrays.

    -or-

  • Read exported COMMON data into local allocatable arrays. Then assign these arrays to the arrays in the exported COMMON block.

STATUS

Microsoft 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

This error occurs only with READ statements. It does not occur with WRITE statements or when reading COMMON variables.

Sample Code to Reproduce Problem

C The code for the DLL C Compile options needed: /LD C

       COMMON /TheBlock[DLLEXPORT]/ CommonBlockIntegerArray(3)
       INTEGER*4 CommonBlockIntegerArray
          CommonBlockIntegerArray(1) = 1
          CommonBlockIntegerArray(2) = 2
          CommonBlockIntegerArray(3) = 3
       END
C C The code for the EXE. C Compile options needed: none C Linker options needed: include the import library for the DLL C C Define the common block for sharing. C
      COMMON /TheBlock[DLLIMPORT]/ CommonBlockIntegerArray(3)
      INTEGER*4 CommonBlockIntegerArray
C C Some local variables. C
      INTEGER*4 intTemp
      CHARACTER*3 someText
C C The main program. C
      someText = '11'
      intTemp = 1
C C If the subscript is an integer variable, there is no problem. C
      READ (someText, '(A3)') CommonBlockIntegerArray(intTemp)
C C The array subscript is a numeric literal, an access violation occurs. C
      READ (someText, '(A3)') CommonBlockIntegerArray(1)
      END

REFERENCES

For information on a related problem, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q112010
   TITLE     : BUG: Access Violation on READ of Exported COMMON Array


Additional reference words: 1.00 Dr. Watson imported
KBCategory: kbtool kbbuglist
KBSubcategory: FORTLngIss


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: July 12, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.