diff options
Diffstat (limited to 'development/xa/dxa-malloc-patch.txt.1')
-rw-r--r-- | development/xa/dxa-malloc-patch.txt.1 | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/development/xa/dxa-malloc-patch.txt.1 b/development/xa/dxa-malloc-patch.txt.1 deleted file mode 100644 index 895ac7b454bf..000000000000 --- a/development/xa/dxa-malloc-patch.txt.1 +++ /dev/null @@ -1,21 +0,0 @@ ---- 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 ? - |