text: font: pango: fix memory allocation
Whoops, we were checking the wrong variable. Fix the OOM check to correctly catch the right errors. Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
This commit is contained in:
parent
b04410f1a9
commit
b074966af1
@ -173,7 +173,7 @@ static int get_glyph(struct face *face, struct kmscon_glyph **out,
|
|||||||
}
|
}
|
||||||
|
|
||||||
glyph->buf.data = malloc(glyph->buf.height * glyph->buf.stride);
|
glyph->buf.data = malloc(glyph->buf.height * glyph->buf.stride);
|
||||||
if (!bitmap.buffer) {
|
if (!glyph->buf.data) {
|
||||||
log_error("cannot allocate bitmap memory");
|
log_error("cannot allocate bitmap memory");
|
||||||
ret = -ENOMEM;
|
ret = -ENOMEM;
|
||||||
goto out_glyph;
|
goto out_glyph;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user