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
a6a57c93
Commit
a6a57c93
authored
Mar 13, 2007
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 13, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Added helper to get the basename + extension from full filename.
parent
b68e0cef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
7 deletions
+15
-7
module.c
dlls/dbghelp/module.c
+15
-7
No files found.
dlls/dbghelp/module.c
View file @
a6a57c93
...
...
@@ -64,17 +64,25 @@ static int match_ext(const WCHAR* ptr, size_t len)
return
0
;
}
static
const
WCHAR
*
get_filename
(
const
WCHAR
*
name
,
const
WCHAR
*
endptr
)
{
const
WCHAR
*
ptr
;
if
(
!
endptr
)
endptr
=
name
+
strlenW
(
name
);
for
(
ptr
=
endptr
-
1
;
ptr
>=
name
;
ptr
--
)
{
if
(
*
ptr
==
'/'
||
*
ptr
==
'\\'
)
break
;
}
return
++
ptr
;
}
static
void
module_fill_module
(
const
WCHAR
*
in
,
WCHAR
*
out
,
size_t
size
)
{
const
WCHAR
*
ptr
,
*
endptr
;
const
WCHAR
*
ptr
,
*
endptr
;
size_t
len
,
l
;
endptr
=
in
+
strlenW
(
in
);
for
(
ptr
=
endptr
-
1
;
ptr
>=
in
&&
*
ptr
!=
'/'
&&
*
ptr
!=
'\\'
;
ptr
--
);
ptr
++
;
len
=
min
(
endptr
-
ptr
,
size
-
1
);
ptr
=
get_filename
(
in
,
endptr
=
in
+
strlenW
(
in
));
len
=
min
(
endptr
-
ptr
,
size
-
1
);
memcpy
(
out
,
ptr
,
len
*
sizeof
(
WCHAR
));
out
[
len
]
=
'\0'
;
if
(
len
>
4
&&
(
l
=
match_ext
(
out
,
len
)))
...
...
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