Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2016-01-10 11:45:57 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2016-01-10 11:45:57 +0300
commite9c8e0316fbce2edfc9c2b6d0ddce18a3ea2a22a (patch)
tree1df10df2db106cd3e4c010463c44d4664a054204 /source/blender/editors/space_info/info_ops.c
parent0372b642705c5304f252f7691b188fc65dd51b59 (diff)
Some minor fixes from coverity reports.
Diffstat (limited to 'source/blender/editors/space_info/info_ops.c')
-rw-r--r--source/blender/editors/space_info/info_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_info/info_ops.c b/source/blender/editors/space_info/info_ops.c
index 2bcd56a3ced..771a64693e0 100644
--- a/source/blender/editors/space_info/info_ops.c
+++ b/source/blender/editors/space_info/info_ops.c
@@ -249,7 +249,7 @@ static int unpack_all_invoke(bContext *C, wmOperator *op, const wmEvent *UNUSED(
}
if (count == 1)
- strcpy(title, IFACE_("Unpack 1 File"));
+ BLI_strncpy(title, IFACE_("Unpack 1 File"), sizeof(title));
else
BLI_snprintf(title, sizeof(title), IFACE_("Unpack %d Files"), count);