diff options
| author | Konstantin Kostiuk <kkostiuk@redhat.com> | 2022-05-12 18:49:09 +0300 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2022-05-14 12:32:41 +0200 |
| commit | 6c1d88c72bd740cc431a13a02145168cf87866fc (patch) | |
| tree | 4d9b57f493551554eda2b87f0cea78500a88a94c /qga/vss-win32/requester.cpp | |
| parent | 580ea136eb37b9a059bdba9c20260dc825bcc2de (diff) | |
| download | focaccia-qemu-6c1d88c72bd740cc431a13a02145168cf87866fc.tar.gz focaccia-qemu-6c1d88c72bd740cc431a13a02145168cf87866fc.zip | |
qga-vss: Use the proper operator to free memory
volume_name_wchar is allocated by 'void* operator new [](long long unsigned int) Signed-off-by: Konstantin Kostiuk <kkostiuk@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20220512154909.331481-1-kkostiuk@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qga/vss-win32/requester.cpp')
| -rw-r--r-- | qga/vss-win32/requester.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qga/vss-win32/requester.cpp b/qga/vss-win32/requester.cpp index 4513324dd2..b371affeab 100644 --- a/qga/vss-win32/requester.cpp +++ b/qga/vss-win32/requester.cpp @@ -354,12 +354,12 @@ void requester_freeze(int *num_vols, void *mountpoints, ErrorSet *errset) if (FAILED(hr)) { err_set(errset, hr, "failed to add %S to snapshot set", volume_name_wchar); - delete volume_name_wchar; + delete[] volume_name_wchar; goto out; } num_mount_points++; - delete volume_name_wchar; + delete[] volume_name_wchar; } if (num_mount_points == 0) { |