Commit 4fd41d71 authored by Felix Paul Kühne's avatar Felix Paul Kühne

Fixed crashes introduced in [aee03175]

parent 0b685caf
...@@ -91,12 +91,12 @@ static int convert_path (const char *restrict path, wchar_t *restrict wpath) ...@@ -91,12 +91,12 @@ static int convert_path (const char *restrict path, wchar_t *restrict wpath)
*/ */
int utf8_open (const char *filename, int flags, ...) int utf8_open (const char *filename, int flags, ...)
{ {
mode_t mode = 0; unsigned int mode = 0;
va_list ap; va_list ap;
va_start (ap, flags); va_start (ap, flags);
if (flags & O_CREAT) if (flags & O_CREAT)
mode = va_arg (ap, mode_t); mode = va_arg (ap, unsigned int);
va_end (ap); va_end (ap);
#ifdef UNDER_CE #ifdef UNDER_CE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment