diff options
Diffstat (limited to 'source4/client')
-rw-r--r-- | source4/client/client.c | 2 | ||||
-rw-r--r-- | source4/client/tree.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/client/client.c b/source4/client/client.c index d9e995f180..6af145c31e 100644 --- a/source4/client/client.c +++ b/source4/client/client.c @@ -1449,7 +1449,7 @@ static int file_find(struct file_list **list, const char *directory, return -1; } } - entry = (struct file_list *) malloc(sizeof (struct file_list)); + entry = malloc_p(struct file_list); if (!entry) { d_printf("Out of memory in file_find\n"); closedir(dir); diff --git a/source4/client/tree.c b/source4/client/tree.c index 94fd93c210..9776ce2ef7 100644 --- a/source4/client/tree.c +++ b/source4/client/tree.c @@ -129,7 +129,7 @@ char *get_path(GtkWidget *item) struct tree_data *make_tree_data(guint32 type, const char *name) { - struct tree_data *p = (struct tree_data *)malloc(sizeof(struct tree_data)); + struct tree_data *p = malloc_p(struct tree_data); if (p) { |