BUG: Access Violation Calling Exported Subroutine in DLL

Last reviewed: April 12, 1996
Article ID: Q149746
The information in this article applies to:
  • Microsoft Fortran PowerStation for Windows 95 and Windows NT, version 4.0

SYMPTOMS

When you use the !MS$ATTRIBUTES DLLEXPORT attribute to export a DLL's subroutine, and call that subroutine from another subroutine within the same DLL it causes the following Access Violation:

   The instruction at "0x00000000" referenced memory at "0x00000000".
   The memory could not be "written"

RESOLUTION

If you need to call an exported subroutine in a DLL, you should put this code into a non-exported helper subroutine and have the exported subroutine call the non-exported helper subroutine.

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

Steps to Reproduce Problem

  1. Build the DLL using the sub.for file listed below. At the MS-DOS command-line prompt, type:

    fl32 /LD sub.for

  2. Build the MAIN program using the main.for file listed below, and link it to the DLL static library file created in Step 1. At the same MS-DOS command-line prompt, type:

    fl32 main.for sub.lib

Sample Code to Illustrate Problem

MAIN

! filename: main.for ! Compile options needed: none

      program fortapp
        interface
          subroutine thesub()
            !ms$attributes dllimport, stdcall :: thesub
          end subroutine
        end interface

   call thesub()
      end program fortapp

DLL

! filename: sub.for ! Compile options needed: /LD

      subroutine thesub()
        !ms$attributes dllexport, stdcall :: thesub
          interface
            subroutine othersub()
              !ms$attributes dllexport, stdcall :: othersub
            end subroutine othersub
     end interface

        call othersub()
      end subroutine

      subroutine othersub()
        !ms$attributes dllexport, stdcall :: othersub
      end subroutine


Additional reference words: 4.00
KBCategory: kbprg 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: April 12, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.