diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2015-04-04 16:38:53 -0700 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2015-04-04 16:38:53 -0700 |
commit | e0a880a032600da88faf34d4e5b43b3c3773b2eb (patch) | |
tree | dd97895caec88488687c9b99aa196a7fe75597e6 /pango/modules.c | |
parent | 231d860cd45814f7fd445194bb41af7e0e113c4c (diff) | |
download | pango-e0a880a032600da88faf34d4e5b43b3c3773b2eb.tar.gz |
[modules] Fixup pango_map_get_engines() after recent changes
Diffstat (limited to 'pango/modules.c')
-rw-r--r-- | pango/modules.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/pango/modules.c b/pango/modules.c index 299fa605..93a48973 100644 --- a/pango/modules.c +++ b/pango/modules.c @@ -96,9 +96,13 @@ pango_map_get_engine (PangoMap *map G_GNUC_UNUSED, void pango_map_get_engines (PangoMap *map G_GNUC_UNUSED, PangoScript script G_GNUC_UNUSED, - GSList **exact_engines G_GNUC_UNUSED, - GSList **fallback_engines G_GNUC_UNUSED) + GSList **exact_engines, + GSList **fallback_engines) { + if (exact_engines) + *exact_engines = NULL; + if (fallback_engines) + *fallback_engines = NULL; } /** |