Add missing array sentinel value
This commit is contained in:
parent
26dead7ea4
commit
a9a9d69a92
3
fiv-io.c
3
fiv-io.c
|
@ -3244,7 +3244,8 @@ fiv_io_model_init(FivIoModel *self)
|
|||
g_strfreev(types);
|
||||
|
||||
gsize n = g_strv_length(globs);
|
||||
self->supported_patterns = g_malloc0_n(n, sizeof *self->supported_patterns);
|
||||
self->supported_patterns =
|
||||
g_malloc0_n(n + 1, sizeof *self->supported_patterns);
|
||||
while (n--)
|
||||
self->supported_patterns[n] = g_pattern_spec_new(globs[n]);
|
||||
g_strfreev(globs);
|
||||
|
|
Loading…
Reference in New Issue