slackbuilds_ponce/development/xa/dxa-malloc-patch.txt
B. Watson b9dcd6d7c4 development/xa: Added (Andre Fachat's open-source 6502 cross assembler)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
2013-10-27 23:39:07 -05:00

21 lines
441 B
Text

--- label.c.orig 2006-11-01 18:23:28.000000000 +0200
+++ label.c 2010-08-31 21:45:43.000000000 +0300
@@ -40,7 +40,7 @@
#include "opcodes.h"
label *labeltable;
-char defaultlabel[5];
+char defaultlabel[6];
unsigned numLabels = 0;
#ifndef __STDC__
@@ -55,7 +55,7 @@
label *entry;
char *buffer;
- if (!((buffer = malloc (strlen (name)))))
+ if (!((buffer = malloc (strlen (name) + 1))))
return;
entry = numLabels ?