mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-16 09:16:15 +01:00
g_file_set_contents(): fix simple logic error
CI FTW.
This commit is contained in:
parent
e40435e834
commit
fc98c13fde
@ -1122,7 +1122,7 @@ write_to_temp_file (const gchar *contents,
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
errno = 0;
|
errno = 0;
|
||||||
if (g_close (fd, err))
|
if (!g_close (fd, err))
|
||||||
{
|
{
|
||||||
g_unlink (tmp_name);
|
g_unlink (tmp_name);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user