diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2016-08-11 22:18:26 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2016-08-11 22:18:26 -0700 |
commit | d35e57b117e1d018130f8945a06954893408ba0c (patch) | |
tree | c536561698ceacd40679b1a1a0f68d1fcff66c0e /common/pixman-region.c | |
parent | bb7bac2d9bfefc739b68f455e92c869c41685c5d (diff) | |
download | xrdp-proprietary-d35e57b117e1d018130f8945a06954893408ba0c.tar.gz xrdp-proprietary-d35e57b117e1d018130f8945a06954893408ba0c.zip |
Pixman fixes
Diffstat (limited to 'common/pixman-region.c')
-rw-r--r-- | common/pixman-region.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/pixman-region.c b/common/pixman-region.c index e8917121..b1949950 100644 --- a/common/pixman-region.c +++ b/common/pixman-region.c @@ -204,7 +204,7 @@ alloc_data (size_t n) if (!sz) return NULL; - return malloc (sz); + return (region_data_type_t *) malloc(sz); } #define FREE_DATA(reg) if ((reg)->data && (reg)->data->size) free ((reg)->data) @@ -1703,7 +1703,7 @@ validate (region_type_t * badreg) if (ri == stack_regions) { - rit = malloc (data_size); + rit = (region_info_t *) malloc(data_size); if (!rit) goto bail; memcpy (rit, ri, num_ri * sizeof (region_info_t)); |