Version 2.5.7
[lttng-ust.git] / liblttng-ust / compat.h
index 58d8585c4823eb16c7343d256777d770f6773100..43b2223e43b84ad5c5dc373a8c327eb365fd32f4 100644 (file)
@@ -55,7 +55,8 @@ void lttng_ust_getprocname(char *name)
        bsd_name = getprogname();
        if (!bsd_name)
                name[0] = '\0';
-       memcpy(name, bsd_name, LTTNG_UST_PROCNAME_LEN - 1);
+       else
+               strncpy(name, bsd_name, LTTNG_UST_PROCNAME_LEN - 1);
 }
 
 #endif
This page took 0.023665 seconds and 4 git commands to generate.