mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
validate: flow: Fix for line-ending mismatch issue on Windows
Unlike POSIX system, Windows distinguishes "w" and "wb" and when a file is opened with text mode, OS will translate \n into \r\n. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1092>
This commit is contained in:
parent
a2aa2cda42
commit
551239c618
1 changed files with 1 additions and 1 deletions
|
@ -423,7 +423,7 @@ validate_flow_setup_files (ValidateFlowOverride * flow, gint default_generate)
|
|||
g_free (directory_path);
|
||||
}
|
||||
|
||||
flow->output_file = fopen (flow->output_file_path, "w");
|
||||
flow->output_file = fopen (flow->output_file_path, "wb");
|
||||
if (!flow->output_file)
|
||||
gst_validate_abort ("Could not open for writing: %s",
|
||||
flow->output_file_path);
|
||||
|
|
Loading…
Reference in a new issue