Commit 41e84b3f authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

ntdll: Return STATUS_NOT_SUPPORTED if dlinfo() is not present.

parent d63e0b70
......@@ -1745,6 +1745,8 @@ NTSTATUS get_builtin_init_funcs( void *handle, void **funcs, SIZE_T len, SIZE_T
if (init_func) *funcs++ = init_func;
for (i = 0; i < init_arraysz / sizeof(*init_array); i++) funcs[i] = init_array[i];
return STATUS_SUCCESS;
#else
return STATUS_NOT_SUPPORTED;
#endif
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment