Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
3dcd451b
Commit
3dcd451b
authored
Feb 12, 2003
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Feb 12, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove dead code after return or properly comment it out.
parent
c531c1c1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
mbcs.c
dlls/msvcrt/mbcs.c
+0
-2
rpc.c
dlls/ole32/rpc.c
+6
-4
No files found.
dlls/msvcrt/mbcs.c
View file @
3dcd451b
...
...
@@ -425,7 +425,6 @@ int _mbsnbcmp(const unsigned char* str, const unsigned char* cmp, MSVCRT_size_t
cmp
+=
clen
;
}
return
0
;
/* Matched len chars */
FIXME
(
"%s %s %d
\n
"
,
str
,
cmp
,
len
);
}
return
strncmp
(
str
,
cmp
,
len
);
}
...
...
@@ -499,7 +498,6 @@ int _mbsnbicmp(const unsigned char* str, const unsigned char* cmp, MSVCRT_size_t
cmp
+=
clen
;
}
return
0
;
/* Matched len bytes */
FIXME
(
"%s %s %d
\n
"
,
str
,
cmp
,
len
);
}
return
strncmp
(
str
,
cmp
,
len
);
}
...
...
dlls/ole32/rpc.c
View file @
3dcd451b
...
...
@@ -80,8 +80,6 @@ typedef struct _PipeBuf {
wine_pipe
*
pipe
;
}
PipeBuf
;
static
int
nrofreaders
=
0
;
static
HRESULT
WINAPI
_xread
(
HANDLE
hf
,
LPVOID
ptr
,
DWORD
size
)
{
DWORD
res
;
...
...
@@ -98,9 +96,10 @@ _xread(HANDLE hf, LPVOID ptr, DWORD size) {
static
void
drs
(
LPCSTR
where
)
{
int
i
,
states
[
10
];
#if 0
static int nrofreaders = 0;
return
;
int i, states[10]
;
memset(states,0,sizeof(states));
for (i=nrofreqs;i--;)
...
...
@@ -116,6 +115,9 @@ drs(LPCSTR where) {
states[REQSTATE_RESP_GOT],
states[REQSTATE_DONE]
);
#endif
return
;
}
static
HRESULT
WINAPI
...
...
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