Changeset 664


Ignore:
Timestamp:
Oct 14, 2018, 10:21:37 PM (6 years ago)
Author:
Gregg Young
Message:

Fix trap caused by DosEnumAttribute not being high memory safe. Ticket #362

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/Lucide/gui/lcdfdlg.cpp

    r658 r664  
    55#include <io.h>
    66#include <fcntl.h>
     7#include <emx\umalloc.h>
    78
    89#include "globals.h"
     
    339340    count = -1;
    340341
    341     if ( ( pBuffer = (char*)malloc(65000) ) != NULL )
     342    if ( ( pBuffer = (char*)_lmalloc( 65000 ) ) != NULL )
    342343    {
    343344        memset( pBuffer, 127, 65000 );
Note: See TracChangeset for help on using the changeset viewer.