diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-04-19 01:54:11 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-04-19 01:54:11 +0200 |
commit | 95973431372272b749762591cd4b82fe7e587a84 (patch) | |
tree | ca727d5a952c9b00c717274bc632c1690e7bb98c /src/input/input_dvd.c | |
parent | dd702a3abc16986a2bbc3d3429fce1f621f94c0d (diff) | |
download | xine-lib-95973431372272b749762591cd4b82fe7e587a84.tar.gz xine-lib-95973431372272b749762591cd4b82fe7e587a84.tar.bz2 |
Replace xine_xcalloc usage with calloc, for the revisions transplanted from 1.2 series.
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 67af70b05..620ce98c4 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -1632,7 +1632,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; |