input/hog-lib: Fix not truncating name

Bluetooth name can be bigger than uhid can support.
diff --git a/profiles/input/hog-lib.c b/profiles/input/hog-lib.c
index 0884ef7..e376c2b 100644
--- a/profiles/input/hog-lib.c
+++ b/profiles/input/hog-lib.c
@@ -1018,7 +1018,7 @@
 		return;
 	}
 
-	strcpy((char *) ev.u.create.name, hog->name);
+	strncpy((char *) ev.u.create.name, hog->name, sizeof(ev.u.create.name));
 	ev.u.create.vendor = hog->vendor;
 	ev.u.create.product = hog->product;
 	ev.u.create.version = hog->version;