Merge up to commit 92e608bd0f3807314c45ee5f5daf6ba781c27d58 of gdm
Pull in a few fixes from gdm trunk for gdm-user.c
This commit is contained in:
parent
1cb6fc004b
commit
f353283a40
@ -20,6 +20,7 @@
|
|||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
|
#include <float.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
@ -881,7 +882,7 @@ curved_rectangle (cairo_t *cr,
|
|||||||
x1 = x0 + width;
|
x1 = x0 + width;
|
||||||
y1 = y0 + height;
|
y1 = y0 + height;
|
||||||
|
|
||||||
if (!width || !height) {
|
if (width < FLT_EPSILON || height < FLT_EPSILON) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1156,8 +1157,8 @@ gdm_user_render_icon (GdmUser *user,
|
|||||||
} else {
|
} else {
|
||||||
pixbuf = NULL;
|
pixbuf = NULL;
|
||||||
}
|
}
|
||||||
out:
|
|
||||||
g_free (path);
|
g_free (path);
|
||||||
|
out:
|
||||||
|
|
||||||
if (pixbuf != NULL) {
|
if (pixbuf != NULL) {
|
||||||
framed = frame_pixbuf (pixbuf);
|
framed = frame_pixbuf (pixbuf);
|
||||||
|
Loading…
Reference in New Issue
Block a user