Skip to content

Commit ed9ba37

Browse files
committed
Fix frei0r plugin not set all f0r_param_info_t members
1 parent fc626bf commit ed9ba37

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/modules/frei0r/factory.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* factory.c -- the factory method interfaces
33
* Copyright (c) 2008 Marco Gittler <g.marco@freenet.de>
4-
* Copyright (C) 2009-2025 Meltytech, LLC
4+
* Copyright (C) 2009-2026 Meltytech, LLC
55
*
66
* This library is free software; you can redistribute it and/or
77
* modify it under the terms of the GNU Lesser General Public
@@ -208,7 +208,7 @@ static mlt_properties fill_param_info(mlt_service_type type, const char *service
208208
0,
209209
(mlt_destructor) mlt_properties_close,
210210
NULL);
211-
f0r_param_info_t paraminfo;
211+
f0r_param_info_t paraminfo = {NULL, 0, NULL};
212212
param_info(&paraminfo, j);
213213
mlt_properties_set(pnum, "identifier", string);
214214
mlt_properties_set(pnum, "title", paraminfo.name);

0 commit comments

Comments
 (0)