free -> txfree

This commit is contained in:
Holger Vogt 2017-11-04 15:56:35 +01:00
parent 338e1bf6fa
commit 8362809e2d
1 changed files with 2 additions and 1 deletions

View File

@ -98,6 +98,7 @@ extern bool ft_batchmode;
extern FILE *flogp; /* definition see xmain.c, stdout redirected to file */
extern void cp_doquit(void);
extern void txfree(void *ptr);
#include "winmain.h"
@ -824,7 +825,7 @@ MakeArgcArgv(char *cmdline, int *argc, char ***argv)
outahere:
/* free the working string if one was allocated */
if (pWorkString)
free(pWorkString);
txfree(pWorkString);
return status;
}