file-test: Fix leaks in test

https://bugzilla.gnome.org/show_bug.cgi?id=711751
This commit is contained in:
Stef Walter 2013-11-09 20:29:56 +01:00
parent dce83add18
commit 9e0ade0691

View File

@ -184,12 +184,14 @@ test_readlink (void)
data = g_file_read_link (link3, &error);
g_assert (data == NULL && "could read link3");
g_assert_error (error, G_FILE_ERROR, G_FILE_ERROR_NOENT);
g_error_free (error);
error = NULL;
data = g_file_read_link (filename, &error);
g_assert (data == NULL && "could read regular file as link");
g_assert_error (error, G_FILE_ERROR, G_FILE_ERROR_INVAL);
g_error_free (error);
remove (filename);
remove (link1);
remove (link2);