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
97d1b11e
Commit
97d1b11e
authored
May 24, 2005
by
Hans Leidekker
Committed by
Alexandre Julliard
May 24, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix uninitialized warnings.
parent
4ad93416
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
datetime.c
dlls/comctl32/datetime.c
+1
-1
chm_lib.c
dlls/itss/chm_lib.c
+1
-1
instr.c
dlls/kernel/instr.c
+1
-1
truetype.c
dlls/wineps/truetype.c
+1
-1
context.c
dlls/wintab32/context.c
+1
-1
break.c
programs/winedbg/break.c
+1
-1
pe.c
tools/winedump/pe.c
+1
-1
No files found.
dlls/comctl32/datetime.c
View file @
97d1b11e
...
...
@@ -607,7 +607,7 @@ DATETIME_Refresh (DATETIME_INFO *infoPtr, HDC hdc)
RECT
*
checkbox
=
&
infoPtr
->
checkbox
;
SIZE
size
;
COLORREF
oldTextColor
;
SHORT
fieldWidth
;
SHORT
fieldWidth
=
0
;
/* draw control edge */
TRACE
(
"
\n
"
);
...
...
dlls/itss/chm_lib.c
View file @
97d1b11e
...
...
@@ -1289,7 +1289,7 @@ static Int64 _chm_decompress_region(struct chmFile *h,
UInt64
nBlock
,
nOffset
;
UInt64
nLen
;
UInt64
gotLen
;
UChar
*
ubuffer
;
UChar
*
ubuffer
=
NULL
;
if
(
len
<=
0
)
return
(
Int64
)
0
;
...
...
dlls/kernel/instr.c
View file @
97d1b11e
...
...
@@ -103,7 +103,7 @@ static BOOL INSTR_ReplaceSelector( CONTEXT86 *context, WORD *sel )
static
BYTE
*
INSTR_GetOperandAddr
(
CONTEXT86
*
context
,
BYTE
*
instr
,
int
long_addr
,
int
segprefix
,
int
*
len
)
{
int
mod
,
rm
,
base
,
index
=
0
,
ss
=
0
,
seg
=
0
,
off
;
int
mod
,
rm
,
base
=
0
,
index
=
0
,
ss
=
0
,
seg
=
0
,
off
;
LDT_ENTRY
entry
;
#define GET_VAL(val,type) \
...
...
dlls/wineps/truetype.c
View file @
97d1b11e
...
...
@@ -425,7 +425,7 @@ static BOOL BuildTrueTypeAFM(FT_Face face)
{
AFM
*
afm
;
AFMMETRICS
*
metrics
;
LPSTR
font_name
,
full_name
,
family_name
,
encoding_scheme
;
LPSTR
font_name
,
full_name
,
family_name
,
encoding_scheme
=
NULL
;
FT_CharMap
charmap
;
BOOL
retval
,
added
;
...
...
dlls/wintab32/context.c
View file @
97d1b11e
...
...
@@ -548,7 +548,7 @@ BOOL WINAPI WTPacket(HCTX hCtx, UINT wSerial, LPVOID lpPkt)
{
int
rc
=
0
;
LPOPENCONTEXT
context
;
LPWTPACKET
wtp
;
LPWTPACKET
wtp
=
NULL
;
TRACE
(
"(%p, %d, %p)
\n
"
,
hCtx
,
wSerial
,
lpPkt
);
...
...
programs/winedbg/break.c
View file @
97d1b11e
...
...
@@ -711,7 +711,7 @@ static BOOL should_stop(int bpnum)
BOOL
break_should_continue
(
ADDRESS
*
addr
,
DWORD
code
,
int
*
count
,
BOOL
*
is_break
)
{
int
bpnum
;
DWORD
oldval
;
DWORD
oldval
=
0
;
int
wpnum
;
enum
dbg_exec_mode
mode
=
dbg_curr_thread
->
exec_mode
;
...
...
tools/winedump/pe.c
View file @
97d1b11e
...
...
@@ -292,7 +292,7 @@ static void dump_sections(void* addr, unsigned num_sect)
static
void
dump_dir_exported_functions
(
void
)
{
unsigned
int
size
;
unsigned
int
size
=
0
;
IMAGE_EXPORT_DIRECTORY
*
exportDir
=
get_dir_and_size
(
IMAGE_FILE_EXPORT_DIRECTORY
,
&
size
);
unsigned
int
i
;
DWORD
*
pFunc
;
...
...
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