mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-28 08:26:14 +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
|
||||
|
||||
errno = 0;
|
||||
if (g_close (fd, err))
|
||||
if (!g_close (fd, err))
|
||||
{
|
||||
g_unlink (tmp_name);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user