Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
190c67c7
Commit
190c67c7
authored
Oct 06, 2011
by
Piotr Caban
Committed by
Alexandre Julliard
Oct 06, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Fix __pioinfo block size.
parent
35b59556
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
file.c
dlls/msvcrt/file.c
+3
-3
No files found.
dlls/msvcrt/file.c
View file @
190c67c7
...
...
@@ -69,7 +69,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
/* FIXME: this should be allocated dynamically */
#define MSVCRT_MAX_FILES 2048
#define MSVCRT_FD_BLOCK_SIZE
64
#define MSVCRT_FD_BLOCK_SIZE
32
/* ioinfo structure size is different in msvcrXX.dll's */
typedef
struct
{
...
...
@@ -82,7 +82,7 @@ typedef struct {
/*********************************************************************
* __pioinfo (MSVCRT.@)
* array of pointers to ioinfo arrays [
64
]
* array of pointers to ioinfo arrays [
32
]
*/
ioinfo
*
MSVCRT___pioinfo
[
MSVCRT_MAX_FILES
/
MSVCRT_FD_BLOCK_SIZE
]
=
{
0
};
...
...
@@ -229,7 +229,7 @@ static HANDLE msvcrt_fdtoh(int fd)
return
INVALID_HANDLE_VALUE
;
}
if
(
msvcrt_get_ioinfo
(
fd
)
->
handle
==
INVALID_HANDLE_VALUE
)
FIXME
(
"returning INVALID_HANDLE_VALUE for %d
\n
"
,
fd
);
WARN
(
"returning INVALID_HANDLE_VALUE for %d
\n
"
,
fd
);
return
msvcrt_get_ioinfo
(
fd
)
->
handle
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment