libvirt/src/storage
Ján Tomko 92a8e72f9d Use virBufferCheckError everywhere we report OOM error
Replace:
if (virBufferError(&buf)) {
    virBufferFreeAndReset(&buf);
    virReportOOMError();
    ...
}

with:
if (virBufferCheckError(&buf) < 0)
    ...

This should not be a functional change (unless some callers
misused the virBuffer APIs - a different error would be reported
then)
2014-07-03 10:48:14 +02:00
..
parthelper.c
storage_backend_disk.c maint: shorten 'TypeType' function names 2014-05-16 00:22:18 -06:00
storage_backend_disk.h
storage_backend_fs.c Fix storage format probing 2014-06-05 18:58:58 +02:00
storage_backend_fs.h storage: add file functions for local and block files 2014-02-14 10:47:57 +01:00
storage_backend_gluster.c storage: gluster: Fix header reader function 2014-07-01 17:39:50 +02:00
storage_backend_gluster.h storage: Add storage file backends for gluster 2014-02-14 11:07:23 +01:00
storage_backend_iscsi.c storage: use virDirRead API 2014-04-28 17:52:46 -06:00
storage_backend_iscsi.h Move functions using iscsiadm to viriscsi.c 2014-03-20 18:04:50 +01:00
storage_backend_logical.c Restore skipping of setting capacity 2014-05-02 07:11:05 -04:00
storage_backend_logical.h
storage_backend_mpath.c Restore skipping of setting capacity 2014-05-02 07:11:05 -04:00
storage_backend_mpath.h Change file names in comments to match the files they are in 2014-03-10 14:26:04 +01:00
storage_backend_rbd.c Use virBufferCheckError everywhere we report OOM error 2014-07-03 10:48:14 +02:00
storage_backend_rbd.h
storage_backend_scsi.c Restore skipping of setting capacity 2014-05-02 07:11:05 -04:00
storage_backend_scsi.h
storage_backend_sheepdog.c conf: track sizes directly in source struct 2014-04-02 06:03:00 -06:00
storage_backend_sheepdog.h Change file names in comments to match the files they are in 2014-03-10 14:26:04 +01:00
storage_backend.c Use virBufferCheckError everywhere we report OOM error 2014-07-03 10:48:14 +02:00
storage_backend.h storage: backend: Add possibility to suppress errors from backend lookup 2014-06-03 09:27:23 +02:00
storage_driver.c storage: Don't store parent directory of an image explicitly 2014-06-25 10:05:56 +02:00
storage_driver.h storage: Move virStorageFileGetMetadata to the storage driver 2014-06-03 09:27:23 +02:00