KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q46384: Example Program RECORD2.C Is Incorrect

Article: Q46384
Product(s): See article
Version(s): 2.00
Operating System(s): MS-DOS
Keyword(s): ENDUSER | docerr | mspl13_c
Last Modified: 17-JUL-1989

The QuickC example program RECORD2.C modifies memory pointed to by an
uninitialized pointer (recpos). RECORD2.C is the example program in
on-line help for the functions fgetpos and fsetpos.

If this program is executed with pointer check enabled, execution may
terminate with the following diagnostic displayed:

   run-time error R6013
   - illegal far pointer use

If RECORD2.C is executed without pointer check enabled, the system may
crash, or it may appear to execute successfully.

To correct this problem add an additional header file, as
follows:

   #include <malloc.h>

Also, replace the line

   fpos_t *recpos;

with the following:

   fpos_t *recpos = malloc(sizeof(fpos_t));

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.

Copyright Microsoft Corporation 1986-2002.