bin: compile lttng-consumerd as a C++
[lttng-tools.git] / src / lib / lttng-ctl / load.c
index 28e1dbac6d2969eaa69b60e6c39260bb4f53d7f4..4af13267581b5a3652ca23fe7d49cfd7869b8ff7 100644 (file)
@@ -6,7 +6,6 @@
  */
 
 #define _LGPL_SOURCE
-#include <assert.h>
 #include <string.h>
 #include <limits.h>
 
@@ -230,8 +229,12 @@ int lttng_load_session_attr_set_input_url(
        }
 
        /* Copy string plus the NULL terminated byte. */
-       lttng_ctl_copy_string(attr->input_url, uris[0].dst.path,
+       ret = lttng_strncpy(attr->input_url, uris[0].dst.path,
                        sizeof(attr->input_url));
+       if (ret) {
+               ret = -LTTNG_ERR_INVALID;
+               goto error;
+       }
 
 end:
 error:
This page took 0.02354 seconds and 4 git commands to generate.