tools: fix windows file handling in gimp-test-clipboard.c
Use g_open() for proper filename encoding and _O_BINARY to avoid line
ending conversions.
(cherry picked from commit a9b36245c9
)
This commit is contained in:
@ -18,6 +18,11 @@
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include <glib/gstdio.h>
|
||||
#ifndef _O_BINARY
|
||||
#define _O_BINARY 0
|
||||
#endif
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpbase/gimpbase.h"
|
||||
@ -373,7 +378,7 @@ test_clipboard_paste (GtkClipboard *clipboard,
|
||||
if (! strcmp (filename, "-"))
|
||||
fd = 1;
|
||||
else
|
||||
fd = open (filename, O_WRONLY | O_CREAT | O_TRUNC, 0666);
|
||||
fd = g_open (filename, O_WRONLY | O_CREAT | O_TRUNC | _O_BINARY, 0666);
|
||||
|
||||
if (fd < 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user