[PATCH 02/10] taskschd: Implement ITaskSettings_put_RestartCount.

Dmitry Timoshkov dmitry at baikal.ru
Wed Nov 22 08:20:36 CST 2017


Hans Leidekker <hans at codeweavers.com> wrote:

>  static HRESULT WINAPI TaskSettings_put_RestartInterval(ITaskSettings *iface, BSTR interval)
>  {
> +    TaskSettings *taskset = impl_from_ITaskSettings(iface);
> +    BSTR str = NULL;
> +
>      TRACE("%p,%s\n", iface, debugstr_w(interval));
> -    return E_NOTIMPL;
> +
> +    if (interval && !(str = SysAllocString(interval))) return E_OUTOFMEMORY;
> +    SysFreeString(taskset->restart_interval);
> +    taskset->restart_interval = str;
> +
> +    return S_OK;
>  }

This set of patches is a little bit messed up. The subject doesn't reflect
actual patch contents for multiple patches in the set. Could you please
fix the patches?

-- 
Dmitry.



More information about the wine-devel mailing list