cryptospore / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone

Blame SOURCES/kvm-opts-remove-redundant-check-for-NULL-parameter.patch

4ec855
From 1906ff6940bb9f84f0f6a66980354e66b5124558 Mon Sep 17 00:00:00 2001
4ec855
From: Laszlo Ersek <lersek@redhat.com>
4ec855
Date: Thu, 12 Sep 2019 13:05:03 +0100
4ec855
Subject: [PATCH 06/22] opts: remove redundant check for NULL parameter
4ec855
MIME-Version: 1.0
4ec855
Content-Type: text/plain; charset=UTF-8
4ec855
Content-Transfer-Encoding: 8bit
4ec855
4ec855
RH-Author: Laszlo Ersek <lersek@redhat.com>
4ec855
Message-id: <20190912130503.14094-7-lersek@redhat.com>
4ec855
Patchwork-id: 90432
4ec855
O-Subject: [RHEL-8.2.0 qemu-kvm PATCH 6/6] opts: remove redundant check for NULL parameter
4ec855
Bugzilla: 1749022
4ec855
RH-Acked-by: Stefano Garzarella <sgarzare@redhat.com>
4ec855
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
4ec855
RH-Acked-by: Eduardo Habkost <ehabkost@redhat.com>
4ec855
4ec855
From: Daniel P. Berrangé <berrange@redhat.com>
4ec855
4ec855
No callers of get_opt_value() pass in a NULL for the "value" parameter,
4ec855
so the check is redundant.
4ec855
4ec855
RHEL8 notes:
4ec855
4ec855
- Context difference in "util/qemu-option.c", function get_opt_value();
4ec855
  upstream has commit 5c99fa375da1 ("cutils: Provide strchrnul",
4ec855
  2018-06-29), part of v3.0.0, but downstream lacks it. Harmless, because
4ec855
  said upstream commit only refactors get_opt_value().
4ec855
4ec855
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
4ec855
Message-Id: <20180514171913.17664-4-berrange@redhat.com>
4ec855
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
4ec855
Tested-by: Roman Kagan <rkagan@virtuozzo.com>
4ec855
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
4ec855
(cherry picked from commit 0c2f6e7ee99517449b4ed6cf333c2d9456d8fe35)
4ec855
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
4ec855
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
4ec855
---
4ec855
 util/qemu-option.c | 12 ++++--------
4ec855
 1 file changed, 4 insertions(+), 8 deletions(-)
4ec855
4ec855
diff --git a/util/qemu-option.c b/util/qemu-option.c
4ec855
index a396d60..940f7a3 100644
4ec855
--- a/util/qemu-option.c
4ec855
+++ b/util/qemu-option.c
4ec855
@@ -75,9 +75,7 @@ const char *get_opt_value(const char *p, char **value)
4ec855
     size_t capacity = 0, length;
4ec855
     const char *offset;
4ec855
 
4ec855
-    if (value) {
4ec855
-        *value = NULL;
4ec855
-    }
4ec855
+    *value = NULL;
4ec855
     while (1) {
4ec855
         offset = strchr(p, ',');
4ec855
         if (!offset) {
4ec855
@@ -88,11 +86,9 @@ const char *get_opt_value(const char *p, char **value)
4ec855
         if (*offset != '\0' && *(offset + 1) == ',') {
4ec855
             length++;
4ec855
         }
4ec855
-        if (value) {
4ec855
-            *value = g_renew(char, *value, capacity + length + 1);
4ec855
-            strncpy(*value + capacity, p, length);
4ec855
-            (*value)[capacity + length] = '\0';
4ec855
-        }
4ec855
+        *value = g_renew(char, *value, capacity + length + 1);
4ec855
+        strncpy(*value + capacity, p, length);
4ec855
+        (*value)[capacity + length] = '\0';
4ec855
         capacity += length;
4ec855
         if (*offset == '\0' ||
4ec855
             *(offset + 1) != ',') {
4ec855
-- 
4ec855
1.8.3.1
4ec855