mirror of https://github.com/neutrinolabs/xrdp
Pixman fixes
This commit is contained in:
parent
bb7bac2d9b
commit
d35e57b117
|
@ -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));
|
||||
|
|
|
@ -42,8 +42,6 @@
|
|||
#define MIN(x1, x2) ((x1) < (x2) ? (x1) : (x2))
|
||||
#define MAX(x1, x2) ((x1) > (x2) ? (x1) : (x2))
|
||||
|
||||
typedef int pixman_bool_t;
|
||||
|
||||
typedef pixman_box16_t box_type_t;
|
||||
typedef pixman_region16_data_t region_data_type_t;
|
||||
typedef pixman_region16_t region_type_t;
|
||||
|
|
|
@ -114,7 +114,7 @@ AC_ARG_ENABLE(mp3lame, AS_HELP_STRING([--enable-mp3lame],
|
|||
AM_CONDITIONAL(XRDP_MP3LAME, [test x$enable_mp3lame = xyes])
|
||||
AC_ARG_ENABLE(pixman, AS_HELP_STRING([--enable-pixman],
|
||||
[Use pixman library (default: no)]),
|
||||
[], [enable_pimanno])
|
||||
[], [enable_pixman=no])
|
||||
AM_CONDITIONAL(XRDP_PIXMAN, [test x$enable_pixman = xyes])
|
||||
|
||||
# checking for openssl
|
||||
|
|
Loading…
Reference in New Issue