From 5644d379564f7e2960154f5df7689314589e9d03 Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Wed, 24 Dec 2014 12:42:17 -0600 Subject: [PATCH] Fix for crash on Win32. Need to address the underlying problem, for now this is just a quick fix. --- rln.c | 2 +- rln.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rln.c b/rln.c index 1a44617..6ab46ee 100644 --- a/rln.c +++ b/rln.c @@ -1545,7 +1545,7 @@ struct OHEADER * make_ofile() if (!ohold->isArchiveFile) free(ohold->o_image); - free(ohold); +// free(ohold); // Also need to remove them from the obj_* tables too :-P // N.B.: Would probably be worthwhile to remove crap like this diff --git a/rln.h b/rln.h index c542202..74d4d2f 100644 --- a/rln.h +++ b/rln.h @@ -52,7 +52,7 @@ #define MAJOR 1 // Major version number #define MINOR 3 // Minor version number -#define PATCH 1 // Patch release number +#define PATCH 2 // Patch release number #ifdef WIN32 #define PLATFORM "Win32" // Release platform - Windows -- 2.37.2