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
58afce6a
Commit
58afce6a
authored
Jun 08, 2018
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jun 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
schedsvc: Add a sanity check when loading a .job file.
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
cb929831
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
atsvc.c
dlls/schedsvc/atsvc.c
+6
-0
No files found.
dlls/schedsvc/atsvc.c
View file @
58afce6a
...
...
@@ -394,6 +394,12 @@ static BOOL load_job_data(const char *data, DWORD size, struct job_t *info)
TRACE
(
"file_version %04x
\n
"
,
fixed
->
file_version
);
TRACE
(
"uuid %s
\n
"
,
wine_dbgstr_guid
(
&
fixed
->
uuid
));
if
(
fixed
->
file_version
!=
0x0001
)
{
TRACE
(
"invalid file version
\n
"
);
return
FALSE
;
}
TRACE
(
"name_size_offset %04x
\n
"
,
fixed
->
name_size_offset
);
TRACE
(
"trigger_offset %04x
\n
"
,
fixed
->
trigger_offset
);
TRACE
(
"error_retry_count %u
\n
"
,
fixed
->
error_retry_count
);
...
...
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