Fix: possible NULL dereference in uri_parse_str_urls()
[lttng-tools.git] / src / common / uri.c
index 380e75dd33b4839b144181c35f341a2724ef0f4e..64437272bf3e0a8b51bf76a09e554546f1c61539 100644 (file)
@@ -644,10 +644,12 @@ ssize_t uri_parse_str_urls(const char *ctrl_url, const char *data_url,
 
                set_default_uri_attr(&data_uris[0], LTTNG_STREAM_DATA);
 
-               ret = compare_destination(&ctrl_uris[0], &data_uris[0]);
-               if (ret != 0) {
-                       ERR("Control and data destination mismatch");
-                       goto error;
+               if (ctrl_uris) {
+                       ret = compare_destination(&ctrl_uris[0], &data_uris[0]);
+                       if (ret != 0) {
+                               ERR("Control and data destination mismatch");
+                               goto error;
+                       }
                }
        }
 
This page took 0.026009 seconds and 5 git commands to generate.