mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-04-01 20:05:19 +00:00
conf: add missing OOM errors
This commit is contained in:
parent
2326006410
commit
23195651f5
@ -89,8 +89,10 @@ static char *virChrdevLockFilePath(const char *dev)
|
||||
++p;
|
||||
}
|
||||
|
||||
if (virAsprintf(&path, "%s/LCK..%s", VIR_CHRDEV_LOCK_FILE_PATH, filename) < 0)
|
||||
if (virAsprintf(&path, "%s/LCK..%s", VIR_CHRDEV_LOCK_FILE_PATH, filename) < 0) {
|
||||
virReportOOMError();
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
sanitizedPath = virFileSanitizePath(path);
|
||||
|
||||
@ -136,8 +138,10 @@ static int virChrdevLockFileCreate(const char *dev)
|
||||
|
||||
/* ensure correct format according to filesystem hierarchy standard */
|
||||
/* http://www.pathname.com/fhs/pub/fhs-2.3.html#VARLOCKLOCKFILES */
|
||||
if (virAsprintf(&pidStr, "%10lld\n", (long long) getpid()) < 0)
|
||||
if (virAsprintf(&pidStr, "%10lld\n", (long long) getpid()) < 0) {
|
||||
virReportOOMError();
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
/* create the lock file */
|
||||
if ((lockfd = open(path, O_WRONLY | O_CREAT | O_EXCL, 00644)) < 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user