GUACAMOLE-307: The "size" instruction can also apply to buffers, not just layers.

This commit is contained in:
Michael Jumper 2017-12-08 14:54:15 -08:00
parent e3d8c3fa12
commit ff6c4b04f4

View File

@ -38,13 +38,13 @@ int guacenc_handle_size(guacenc_display* display, int argc, char** argv) {
int width = atoi(argv[1]); int width = atoi(argv[1]);
int height = atoi(argv[2]); int height = atoi(argv[2]);
/* Retrieve requested layer */ /* Retrieve requested layer/buffer */
guacenc_layer* layer = guacenc_display_get_layer(display, index); guacenc_buffer* buffer = guacenc_display_get_related_buffer(display, index);
if (layer == NULL) if (buffer == NULL)
return 1; return 1;
/* Resize layer */ /* Resize layer/buffer */
return guacenc_buffer_resize(layer->buffer, width, height); return guacenc_buffer_resize(buffer, width, height);
} }