bugfix [#23053] Blender crashes when adding image as a strip

buffer overrun when copying image name.
This commit is contained in:
Campbell Barton 2010-07-28 07:00:40 +00:00
parent c32720a0c0
commit f2e1136ca3

@ -181,7 +181,9 @@ static void seq_load_operator_info(SeqLoadInfo *seq_load, wmOperator *op)
/* used for image strip */
/* best guess, first images name */
RNA_BEGIN(op->ptr, itemptr, "files") {
RNA_string_get(&itemptr, "name", seq_load->name);
char *name= RNA_string_get_alloc(&itemptr, "name", NULL, 0);
BLI_strncpy(seq_load->name, name, sizeof(seq_load->name));
MEM_freeN(name);
break;
}
RNA_END;