[pkg-wine-party] [SCM] Debian Wine packaging branch, wheezy, updated. wine-1.4-7-302-gb61b690

Alexandre Julliard julliard at winehq.org
Sun Jun 17 20:02:38 UTC 2012


The following commit has been merged in the wheezy branch:
commit 6596c88f0457600a91b108020374b79735dc8a34
Author: Robert van Herk <mijnspamboxje at hotmail.com>
Date:   Tue Mar 27 14:43:55 2012 +0200

    msvcrt: Fix file mode T (temporary file).
    (cherry picked from commit 516bb0ba64c44f8226c0863547b5866c97deb425)

diff --git a/dlls/msvcrt/file.c b/dlls/msvcrt/file.c
index 1c56eee..df2c7cd 100644
--- a/dlls/msvcrt/file.c
+++ b/dlls/msvcrt/file.c
@@ -1281,10 +1281,16 @@ static int msvcrt_get_flags(const MSVCRT_wchar_t* mode, int *open_flags, int* st
       *open_flags |=  MSVCRT__O_BINARY;
       *open_flags &= ~MSVCRT__O_TEXT;
       break;
-    case 'T': case 't':
+    case 't':
       *open_flags |=  MSVCRT__O_TEXT;
       *open_flags &= ~MSVCRT__O_BINARY;
       break;
+    case 'D':
+      *open_flags |= MSVCRT__O_TEMPORARY;
+      break;
+    case 'T':
+      *open_flags |= MSVCRT__O_SHORT_LIVED;
+      break;
     case '+':
     case ' ':
       break;

-- 
Debian Wine packaging



More information about the pkg-wine-party mailing list