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
8fa7ee26
Commit
8fa7ee26
authored
Aug 30, 2004
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 30, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a memory leak.
Improve the GetFullPathName() error checks. Stricter match check in GetLinkLocation(). Clarify the 'Unknown link location' message.
parent
a49aa4c2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
10 deletions
+15
-10
winemenubuilder.c
programs/winemenubuilder/winemenubuilder.c
+15
-10
No files found.
programs/winemenubuilder/winemenubuilder.c
View file @
8fa7ee26
...
...
@@ -510,7 +510,8 @@ static char *extract_icon( const char *path, int index)
xpm_path
=
NULL
;
end:
HeapFree
(
GetProcessHeap
(),
0
,
ico_path
);
HeapFree
(
GetProcessHeap
(),
0
,
iconsdir
);
HeapFree
(
GetProcessHeap
(),
0
,
ico_path
);
return
xpm_path
;
}
...
...
@@ -650,12 +651,14 @@ static char *cleanup_link( LPCWSTR link )
*/
static
BOOL
GetLinkLocation
(
LPCWSTR
linkfile
,
DWORD
*
ofs
,
DWORD
*
loc
)
{
WCHAR
ch
,
filename
[
MAX_PATH
],
buffer
[
MAX_PATH
];
DWORD
len
,
i
,
r
;
WCHAR
filename
[
MAX_PATH
],
buffer
[
MAX_PATH
];
DWORD
len
,
i
,
r
,
filelen
;
const
DWORD
locations
[]
=
{
CSIDL_STARTUP
,
CSIDL_DESKTOPDIRECTORY
,
CSIDL_STARTMENU
};
if
(
!
GetFullPathNameW
(
linkfile
,
MAX_PATH
,
filename
,
NULL
))
WINE_TRACE
(
"%s
\n
"
,
wine_dbgstr_w
(
linkfile
));
filelen
=
GetFullPathNameW
(
linkfile
,
MAX_PATH
,
filename
,
NULL
);
if
(
filelen
==
0
||
filelen
>
MAX_PATH
)
return
FALSE
;
for
(
i
=
0
;
i
<
sizeof
(
locations
)
/
sizeof
(
locations
[
0
]);
i
++
)
...
...
@@ -664,15 +667,15 @@ static BOOL GetLinkLocation( LPCWSTR linkfile, DWORD *ofs, DWORD *loc )
continue
;
len
=
lstrlenW
(
buffer
);
if
(
len
>=
MAX_PATH
)
if
(
len
>=
MAX_PATH
)
continue
;
if
(
len
>
filelen
||
filename
[
len
]
!=
'\\'
)
continue
;
/* do a lstrcmpinW */
ch
=
filename
[
len
];
filename
[
len
]
=
0
;
r
=
lstrcmpiW
(
filename
,
buffer
);
filename
[
len
]
=
ch
;
filename
[
len
]
=
'\\'
;
if
(
r
)
continue
;
...
...
@@ -702,7 +705,7 @@ static BOOL InvokeShellLinker( IShellLinkA *sl, LPCWSTR link )
if
(
!
GetLinkLocation
(
link
,
&
ofs
,
&
csidl
)
)
{
WINE_WARN
(
"Unknown link location
(%08lx). Ignoring
\n
"
,
csidl
);
WINE_WARN
(
"Unknown link location
'%s'. Ignoring.
\n
"
,
wine_dbgstr_w
(
link
)
);
return
TRUE
;
}
if
(
(
csidl
!=
CSIDL_DESKTOPDIRECTORY
)
&&
(
csidl
!=
CSIDL_STARTMENU
)
)
...
...
@@ -814,6 +817,7 @@ static BOOL Process_Link( LPWSTR linkname, BOOL bAgain )
IPersistFile
*
pf
;
HRESULT
r
;
WCHAR
fullname
[
MAX_PATH
];
DWORD
len
;
if
(
!
linkname
[
0
]
)
{
...
...
@@ -821,7 +825,8 @@ static BOOL Process_Link( LPWSTR linkname, BOOL bAgain )
return
1
;
}
if
(
!
GetFullPathNameW
(
linkname
,
MAX_PATH
,
fullname
,
NULL
))
len
=
GetFullPathNameW
(
linkname
,
MAX_PATH
,
fullname
,
NULL
);
if
(
len
==
0
||
len
>
MAX_PATH
)
{
WINE_ERR
(
"couldn't get full path of link file
\n
"
);
return
1
;
...
...
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