summaryrefslogtreecommitdiff
path: root/shell/match.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-09 14:15:57 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-09 14:15:57 +0000
commit1943aec2ec390d9fda159aa0412362780ec83f09 (patch)
treeec9ddd365d2232d9fb621b79000cbf20f1410cda /shell/match.c
parentefea9d2819165b414b81a47c8227ae007bd5382a (diff)
downloadbusybox-w32-1943aec2ec390d9fda159aa0412362780ec83f09.tar.gz
busybox-w32-1943aec2ec390d9fda159aa0412362780ec83f09.tar.bz2
busybox-w32-1943aec2ec390d9fda159aa0412362780ec83f09.zip
hush: plug the leak of expanded heredoc
Diffstat (limited to 'shell/match.c')
-rw-r--r--shell/match.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/match.c b/shell/match.c
index 0810fd8f6..47038d667 100644
--- a/shell/match.c
+++ b/shell/match.c
@@ -14,7 +14,6 @@
14 * 14 *
15 * Original BSD copyright notice is retained at the end of this file. 15 * Original BSD copyright notice is retained at the end of this file.
16 */ 16 */
17
18#ifdef STANDALONE 17#ifdef STANDALONE
19# include <stdbool.h> 18# include <stdbool.h>
20# include <stdio.h> 19# include <stdio.h>
@@ -22,7 +21,7 @@
22# include <string.h> 21# include <string.h>
23# include <unistd.h> 22# include <unistd.h>
24#else 23#else
25# include "busybox.h" 24# include "libbb.h"
26#endif 25#endif
27#include <fnmatch.h> 26#include <fnmatch.h>
28#include "match.h" 27#include "match.h"