BUG: Write of Function Returning a Character String Fails

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

SYMPTOMS

When you declare a function that returns a variable size array of variable length character strings by putting the array declaration part before the string declaration part, a write of the array-valued function fails to produce correct results.

RESOLUTION

Reorder the declaration by specifying the string declaration part before the array declaration part.

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

The following sample code causes the write of the array to print nothing. Changing the declaration, so the string is declared before the array, causes the correct output 1 to be written to the display.

Sample Code to Illustrate Problem

! Compile options needed: none

      program test
        interface
          function h(i,j)
! comment the following two lines for workaround
            dimension h(i)
            character(len=j) h
! uncomment the following two lines for workaround
!            character(len=j) h
!            dimension h(i)
          end function
        end interface

        write(*,*) h(1,1)
      end program test

      function h(i,j)
! comment the following two lines for workaround
        dimension h(i)
        character(len=j) h
! uncomment the following two lines for workaround
!        character(len=j) h
!        dimension h(i)
        h = '1234567890'
      end function


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 26, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.