##// END OF EJS Templates
osutil: silence uninitialized variable warning
Patrick Mezard -
r8597:dc1b9e22 default
parent child Browse files
Show More
@@ -402,7 +402,7 b' static PyObject *posixfile(PyObject *sel'
402 PyObject *file_obj = NULL;
402 PyObject *file_obj = NULL;
403 char *name = NULL;
403 char *name = NULL;
404 char *mode = "rb";
404 char *mode = "rb";
405 DWORD access;
405 DWORD access = 0;
406 DWORD creation;
406 DWORD creation;
407 HANDLE handle;
407 HANDLE handle;
408 int fd, flags = 0;
408 int fd, flags = 0;
General Comments 0
You need to be logged in to leave comments. Login now