summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2015-04-04 16:38:53 -0700
committerBehdad Esfahbod <behdad@behdad.org>2015-04-04 16:38:53 -0700
commite0a880a032600da88faf34d4e5b43b3c3773b2eb (patch)
treedd97895caec88488687c9b99aa196a7fe75597e6
parent231d860cd45814f7fd445194bb41af7e0e113c4c (diff)
downloadpango-e0a880a032600da88faf34d4e5b43b3c3773b2eb.tar.gz
[modules] Fixup pango_map_get_engines() after recent changes
-rw-r--r--pango/modules.c8
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;
}
/**