提交 e2552581 编写于 作者: R Rich Felker

fix invalid substitute of [1] for flexible array member in glob

上级 7b384c42
......@@ -11,7 +11,7 @@
struct match
{
struct match *next;
char name[1];
char name[];
};
static int is_literal(const char *p, int useesc)
......@@ -37,7 +37,7 @@ static int is_literal(const char *p, int useesc)
static int append(struct match **tail, const char *name, size_t len, int mark)
{
struct match *new = malloc(sizeof(struct match) + len + 1);
struct match *new = malloc(sizeof(struct match) + len + 2);
if (!new) return -1;
(*tail)->next = new;
new->next = NULL;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册