GUACAMOLE-1802: Merge replacement of _aligned_recalloc() with _aligned_malloc().

This commit is contained in:
Mike Jumper 2023-06-07 08:42:59 -07:00 committed by GitHub
commit 5a08aea709
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,7 +41,7 @@ BOOL guac_rdp_pointer_new(rdpContext* context, rdpPointer* pointer) {
rdp_client->display, pointer->width, pointer->height);
/* Allocate data for image */
unsigned char* data = _aligned_recalloc(NULL, 1, pointer->width * pointer->height * 4, 16);
unsigned char* data = _aligned_malloc(pointer->width * pointer->height * 4, 16);
cairo_surface_t* surface;