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
daab2c11
Commit
daab2c11
authored
Jan 31, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Fix an uninitialized return value.
parent
49a8bb0a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
source.c
dlls/dbghelp/source.c
+3
-3
No files found.
dlls/dbghelp/source.c
View file @
daab2c11
...
...
@@ -87,11 +87,11 @@ static unsigned source_find(const char* name)
*/
unsigned
source_new
(
struct
module
*
module
,
const
char
*
base
,
const
char
*
name
)
{
unsigned
ret
;
unsigned
ret
=
-
1
;
const
char
*
full
;
char
*
tmp
=
NULL
;
if
(
!
name
)
return
(
unsigned
)
-
1
;
if
(
!
name
)
return
ret
;
if
(
!
base
||
*
name
==
'/'
)
full
=
name
;
else
...
...
@@ -99,7 +99,7 @@ unsigned source_new(struct module* module, const char* base, const char* name)
unsigned
bsz
=
strlen
(
base
);
tmp
=
HeapAlloc
(
GetProcessHeap
(),
0
,
bsz
+
1
+
strlen
(
name
)
+
1
);
if
(
!
tmp
)
return
(
unsigned
)
-
1
;
if
(
!
tmp
)
return
ret
;
full
=
tmp
;
strcpy
(
tmp
,
base
);
if
(
tmp
[
bsz
-
1
]
!=
'/'
)
tmp
[
bsz
++
]
=
'/'
;
...
...
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