diff options
author | Brad King <brad.king@kitware.com> | 2019-07-01 13:42:12 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-07-01 13:42:12 (GMT) |
commit | 0998f6396a51248aa307c3254f876d2699597a5b (patch) | |
tree | adbd3fa0395cdb423833bdb576df1e2009aa99e5 /Utilities/cmexpat/lib/loadlibrary.c | |
parent | 7449c63f3ea8026cd14e7b88d44253375dd9c298 (diff) | |
parent | ba13dc2aa88097649b4c9084a5188fbf7f56a901 (diff) | |
download | CMake-0998f6396a51248aa307c3254f876d2699597a5b.zip CMake-0998f6396a51248aa307c3254f876d2699597a5b.tar.gz CMake-0998f6396a51248aa307c3254f876d2699597a5b.tar.bz2 |
Merge branch 'upstream-expat' into update-expat
* upstream-expat:
expat 2019-06-19 (d3b78b42)
Diffstat (limited to 'Utilities/cmexpat/lib/loadlibrary.c')
-rw-r--r-- | Utilities/cmexpat/lib/loadlibrary.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Utilities/cmexpat/lib/loadlibrary.c b/Utilities/cmexpat/lib/loadlibrary.c index ffce868..35fdf98 100644 --- a/Utilities/cmexpat/lib/loadlibrary.c +++ b/Utilities/cmexpat/lib/loadlibrary.c @@ -6,8 +6,10 @@ * \___|\___/|_| \_\_____| * * Copyright (C) 2016 - 2017, Steve Holme, <steve_holme@hotmail.com>. + * Copyright (C) 2017, Expat development team * * All rights reserved. + * Licensed under the MIT license: * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -82,7 +84,7 @@ HMODULE _Expat_LoadLibrary(LPCTSTR filename) /* Get a handle to kernel32 so we can access it's functions at runtime */ HMODULE hKernel32 = GetModuleHandle(TEXT("kernel32")); if(!hKernel32) - return NULL; + return NULL; /* LCOV_EXCL_LINE */ /* Attempt to find LoadLibraryEx() which is only available on Windows 2000 and above */ |