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
6b1a9311
Commit
6b1a9311
authored
Apr 02, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't try to get the file time if the file wasn't found.
parent
9c141d4a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
profile.c
dlls/kernel/profile.c
+2
-3
No files found.
dlls/kernel/profile.c
View file @
6b1a9311
...
...
@@ -746,8 +746,6 @@ static BOOL PROFILE_Open( LPCWSTR filename )
WARN
(
"Error %ld opening file %s
\n
"
,
GetLastError
(),
debugstr_w
(
buffer
));
return
FALSE
;
}
GetFileTime
(
hFile
,
NULL
,
NULL
,
&
LastWriteTime
);
for
(
i
=
0
;
i
<
N_CACHED_PROFILES
;
i
++
)
{
...
...
@@ -762,6 +760,7 @@ static BOOL PROFILE_Open( LPCWSTR filename )
MRUProfile
[
j
]
=
MRUProfile
[
j
-
1
];
CurProfile
=
tempProfile
;
}
GetFileTime
(
hFile
,
NULL
,
NULL
,
&
LastWriteTime
);
if
(
memcmp
(
&
CurProfile
->
LastWriteTime
,
&
LastWriteTime
,
sizeof
(
FILETIME
)))
TRACE
(
"(%s): already opened (mru=%d)
\n
"
,
debugstr_w
(
buffer
),
i
);
...
...
@@ -793,8 +792,8 @@ static BOOL PROFILE_Open( LPCWSTR filename )
if
(
hFile
!=
INVALID_HANDLE_VALUE
)
{
CurProfile
->
section
=
PROFILE_Load
(
hFile
,
&
CurProfile
->
encoding
);
GetFileTime
(
hFile
,
NULL
,
NULL
,
&
CurProfile
->
LastWriteTime
);
CloseHandle
(
hFile
);
memcpy
(
&
CurProfile
->
LastWriteTime
,
&
LastWriteTime
,
sizeof
(
FILETIME
));
}
else
{
...
...
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