Skip to content
Snippets Groups Projects
Commit 0932d858 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard
Browse files

schedsvc: Pass full task file name to remove_job()/add_job().

parent 4bd66362
No related branches found
No related tags found
No related merge requests found
......@@ -118,8 +118,8 @@ static DWORD WINAPI tasks_monitor_thread(void *arg)
GetWindowsDirectoryW(path, MAX_PATH);
lstrcatW(path, tasksW);
lstrcatW(path, info.data.FileName);
remove_job(info.data.FileName);
add_job(info.data.FileName);
remove_job(path);
add_job(path);
break;
default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment