From: Thomas Hindoe Paaboel Andersen Date: Sat, 28 Feb 2015 22:39:55 +0000 (+0100) Subject: core: fix return value on OOM X-Git-Tag: v220~954 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c43b2132f37264600cc26e07c8d85dfdd6c969f0;p=thirdparty%2Fsystemd.git core: fix return value on OOM --- diff --git a/src/core/device.c b/src/core/device.c index e41ed4149fc..eb976b86011 100644 --- a/src/core/device.c +++ b/src/core/device.c @@ -209,6 +209,8 @@ static int device_update_description(Unit *u, struct udev_device *dev, const cha j = strjoin(model, " ", label, NULL); if (j) r = unit_set_description(u, j); + else + r = -ENOMEM; } else r = unit_set_description(u, model); } else