mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-19 07:21:20 +03:00
import KernelEx-4.5-Final
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* KernelEx
|
||||
* Copyright (C) 2008-2009, Xeno86
|
||||
* Copyright (C) 2008-2010, Xeno86
|
||||
*
|
||||
* This file is part of KernelEx source code.
|
||||
*
|
||||
@ -53,12 +53,12 @@ int kexInit()
|
||||
if (!internals_init())
|
||||
goto __error1;
|
||||
|
||||
if (!apiconfmgr.load_api_configurations())
|
||||
goto __error2;
|
||||
|
||||
if (!resolver_init())
|
||||
goto __error2;
|
||||
|
||||
if (!apiconfmgr.load_api_configurations())
|
||||
goto __error3;
|
||||
|
||||
resolver_hook();
|
||||
|
||||
#ifdef _DEBUG
|
||||
@ -68,6 +68,8 @@ int kexInit()
|
||||
DBGPRINTF(("Initialized successfully\n"));
|
||||
return ++init_count;
|
||||
|
||||
__error3:
|
||||
resolver_uninit();
|
||||
__error2:
|
||||
internals_uninit();
|
||||
__error1:
|
||||
|
Reference in New Issue
Block a user