diff --git a/render/render.c b/render/render.c index 71e5f7b3..560ee38e 100644 --- a/render/render.c +++ b/render/render.c @@ -177,7 +177,10 @@ Appearance *appearance_copy(Appearance *orig) break; } copy->textures = orig->textures; - memcpy(copy->texture, orig->texture, orig->textures * sizeof(Texture)); + if (orig->textures) { + copy->texture = malloc(orig->textures * sizeof(Texture)); + memcpy(copy->texture, orig->texture, orig->textures * sizeof(Texture)); + } else copy->texture = NULL; copy->pixmap = None; copy->xftdraw = NULL; return copy;