]> sigrok.org Git - libsigrokdecode.git/blobdiff - util.c
Use g_malloc*() consistently, simplify error handling.
[libsigrokdecode.git] / util.c
diff --git a/util.c b/util.c
index c1b90404cbd43fd513363de5de34599ed7453387..764474ba2a6e461814e53b574cd87dbecfb81dd9 100644 (file)
--- a/util.c
+++ b/util.c
@@ -145,11 +145,7 @@ SRD_PRIV int py_str_as_str(const PyObject *py_str, char **outstr)
                goto err_out;
        }
 
-       if (!(*outstr = g_strdup(str))) {
-               srd_dbg("Failed to g_malloc() outstr.");
-               ret = SRD_ERR_MALLOC;
-               goto err_out;
-       }
+       *outstr = g_strdup(str);
 
 err_out:
        if (py_encstr)