From c10adcd728be238d8579bf98075a2468f0143cc2 Mon Sep 17 00:00:00 2001 From: nima Date: Tue, 1 Jul 2008 23:14:17 +0000 Subject: Brought main() back into the python module and fixed malloc/free problems. git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@7 abc39116-655e-4be6-ad55-d661dc543056 --- dmidecode.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dmidecode.c') diff --git a/dmidecode.c b/dmidecode.c index 974f3f0..a00de7b 100644 --- a/dmidecode.c +++ b/dmidecode.c @@ -4049,7 +4049,7 @@ int submain(int argc, char * const argv[]) size_t fp; int efi; u8 *buf; - + if(sizeof(u8)!=1 || sizeof(u16)!=2 || sizeof(u32)!=4 || '\0'!=0) { fprintf(stderr, "%s: compiler incompatibility\n", argv[0]); @@ -4057,8 +4057,8 @@ int submain(int argc, char * const argv[]) } /* Set default option values */ - opt.devmem=DEFAULT_MEM_DEV; - opt.flags=0; + //. opt.devmem=DEFAULT_MEM_DEV; + //. opt.flags=0; if(parse_command_line(argc, argv)<0) { @@ -4132,7 +4132,7 @@ done: catsprintf(buffer, "# No SMBIOS nor DMI entry point found, sorry.\n"); exit_free: - free(opt.type); + //. free(opt.type); return ret; } -- cgit