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:
authorJulian Eisel <julian@blender.org>2022-06-30 19:42:22 +0300
committerJulian Eisel <julian@blender.org>2022-06-30 19:42:22 +0300
commite7c58941b1f1643c8bb997157eaacac1565fce7c (patch)
treeba2e5bcd170d3de99e50ff3199a9196f0031f024 /source/blender/blenloader
parent65166e145b4d6292abc289b71894c53b25c186ba (diff)
Fix pointer to pointer passed where single pointer is expected (VSE versioning)
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/versioning_300.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/versioning_300.c b/source/blender/blenloader/intern/versioning_300.c
index f6cc413d220..34b32ebc175 100644
--- a/source/blender/blenloader/intern/versioning_300.c
+++ b/source/blender/blenloader/intern/versioning_300.c
@@ -600,7 +600,7 @@ static void seq_speed_factor_fix_rna_path(Sequence *seq, ListBase *fcurves)
char name_esc[(sizeof(seq->name) - 2) * 2];
BLI_str_escape(name_esc, seq->name + 2, sizeof(name_esc));
char *path = BLI_sprintfN("sequence_editor.sequences_all[\"%s\"].pitch", name_esc);
- FCurve *fcu = BKE_fcurve_find(&fcurves, path, 0);
+ FCurve *fcu = BKE_fcurve_find(fcurves, path, 0);
if (fcu != NULL) {
MEM_freeN(fcu->rna_path);
fcu->rna_path = BLI_sprintfN("sequence_editor.sequences_all[\"%s\"].speed_factor", name_esc);