[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [60819] trunk/blender/source/blender/ editors/space_clip/clip_editor.c: Fix #37117: MCE prefetching fails with non-ascii characters in path

Sergey Sharybin sergey.vfx at gmail.com
Thu Oct 17 14:28:32 CEST 2013


Revision: 60819
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=60819
Author:   nazgul
Date:     2013-10-17 12:28:32 +0000 (Thu, 17 Oct 2013)
Log Message:
-----------
Fix #37117: MCE prefetching fails with non-ascii characters in path

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_clip/clip_editor.c

Modified: trunk/blender/source/blender/editors/space_clip/clip_editor.c
===================================================================
--- trunk/blender/source/blender/editors/space_clip/clip_editor.c	2013-10-17 10:50:54 UTC (rev 60818)
+++ trunk/blender/source/blender/editors/space_clip/clip_editor.c	2013-10-17 12:28:32 UTC (rev 60819)
@@ -639,7 +639,7 @@
 
 	BKE_movieclip_filename_for_frame(clip, &user, name);
 
-	file = open(name, O_BINARY | O_RDONLY, 0);
+	file = BLI_open(name, O_BINARY | O_RDONLY, 0);
 	if (file < 0) {
 		return NULL;
 	}




More information about the Bf-blender-cvs mailing list