diff options
Diffstat (limited to 'editors/lpe/files')
-rw-r--r-- | editors/lpe/files/patch-src_cfg-core.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/editors/lpe/files/patch-src_cfg-core.c b/editors/lpe/files/patch-src_cfg-core.c new file mode 100644 index 00000000000..f8c55670151 --- /dev/null +++ b/editors/lpe/files/patch-src_cfg-core.c @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- src/cfg-core.c 2001/04/08 15:27:13 1.1 ++++ src/cfg-core.c 2001/04/08 15:27:39 +@@ -62,7 +62,7 @@ + /* + * We search for "\n[name]=" in the lookup table... + */ +- t_sstring = (char *) malloc (strlen (name) + 5); ++ t_sstring = (char *) alloca (strlen (name) + 5); + sprintf (t_sstring, "\n%s=", name); + if ((t_hentry = strstr (LpeOptionHash, t_sstring)) != NULL) + { |