chiark / gitweb /
util: properly handle OOM when allocating Debian version string
[elogind.git] / src / util.c
index d12b5e772da601b9379e0c0efde09481564d7a56..d769d60986f136d628d0eb0cfac21c3f9c478a35 100644 (file)
@@ -3048,6 +3048,7 @@ void status_welcome(void) {
 
         if (!pretty_name) {
                 char *version;
+
                 if ((r = read_one_line_file("/etc/debian_version", &version)) < 0) {
 
                         if (r != -ENOENT)
@@ -3056,6 +3057,9 @@ void status_welcome(void) {
                         truncate_nl(version);
                         pretty_name = strappend("Debian ", version);
                         free(version);
+
+                        if (!pretty_name)
+                                log_warning("Failed to allocate Debian version string.");
                 }
         }