diff options
-rw-r--r-- | source3/smbd/nttrans.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index 142ff39245..e397139d2e 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -1063,6 +1063,10 @@ static struct ea_list *read_nttrans_ea_list(TALLOC_CTX *ctx, const char *pdata, struct ea_list *tmp; struct ea_list *eal = read_ea_list_entry(ctx, pdata + offset + 4, data_size - offset - 4, NULL); + if (!eal) { + return NULL; + } + DLIST_ADD_END(ea_list_head, eal, tmp); if (next_offset == 0) { break; |