platform: fix missing ;

Clearly, we are testing the fallback path well.
This commit is contained in:
Christian Hergert
2016-04-16 17:00:56 -07:00
parent f2d40eda89
commit f307ce50ab

View File

@ -57,7 +57,7 @@ sp_memfd_create (const gchar *name)
if (name_used != NULL) if (name_used != NULL)
{ {
g_unlink (name_used); g_unlink (name_used);
g_free (name_used) g_free (name_used);
} }
return fd; return fd;