diff options
Diffstat (limited to 'src/input/input_dvd.c')
-rw-r--r-- | src/input/input_dvd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index 02017956e..7eefa7b22 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -1636,7 +1636,7 @@ static input_plugin_t *dvd_class_get_instance (input_class_t *class_gen, xine_st this->mem_stack = 0; this->mem_stack_max = 1024; - this->mem = xine_xcalloc(this->mem_stack_max, sizeof(unsigned char *)); + this->mem = calloc(this->mem_stack_max, sizeof(unsigned char *)); if (!this->mem) { free(this); return NULL; |