From: Shamus Hammons Date: Wed, 24 Dec 2014 18:42:17 +0000 (-0600) Subject: Fix for crash on Win32. X-Git-Tag: v1.7.1~25 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rln;a=commitdiff_plain;h=5644d379564f7e2960154f5df7689314589e9d03;ds=sidebyside Fix for crash on Win32. Need to address the underlying problem, for now this is just a quick fix. --- 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