Sha256: f1d2bcb2b6e60ca76c1ee0ca0f236e928331aa9755afc16926a5dab5de26d255

Contents?: true

Size: 1.24 KB

Versions: 37

Compression:

Stored size: 1.24 KB

Contents

/*
 * Copyright (C) the libgit2 contributors. All rights reserved.
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */

#include "error.h"

#include "utf-conv.h"

#ifdef GIT_WINHTTP
# include <winhttp.h>
#endif

char *git_win32_get_error_message(DWORD error_code)
{
	LPWSTR lpMsgBuf = NULL;
	HMODULE hModule = NULL;
	char *utf8_msg = NULL;
	DWORD dwFlags =
		FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_IGNORE_INSERTS;

	if (!error_code)
		return NULL;

#ifdef GIT_WINHTTP
	/* Errors raised by WinHTTP are not in the system resource table */
	if (error_code >= WINHTTP_ERROR_BASE &&
		error_code <= WINHTTP_ERROR_LAST)
		hModule = GetModuleHandleW(L"winhttp");
#endif

	GIT_UNUSED(hModule);

	if (hModule)
		dwFlags |= FORMAT_MESSAGE_FROM_HMODULE;
	else
		dwFlags |= FORMAT_MESSAGE_FROM_SYSTEM;

	if (FormatMessageW(dwFlags, hModule, error_code,
		MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
		(LPWSTR)&lpMsgBuf, 0, NULL)) {
		/* Convert the message to UTF-8. If this fails, we will
		 * return NULL, which is a condition expected by the caller */
		if (git__utf16_to_8_alloc(&utf8_msg, lpMsgBuf) < 0)
			utf8_msg = NULL;

		LocalFree(lpMsgBuf);
	}

	return utf8_msg;
}

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
rugged-1.6.5 vendor/libgit2/src/util/win32/error.c
rugged-1.6.3 vendor/libgit2/src/util/win32/error.c
rugged-1.6.2 vendor/libgit2/src/util/win32/error.c
rugged-1.5.1 vendor/libgit2/src/util/win32/error.c
rugged-1.4.5 vendor/libgit2/src/win32/error.c
rugged-1.5.0.1 vendor/libgit2/src/util/win32/error.c
rugged-1.5.0 vendor/libgit2/src/util/win32/error.c
rugged-1.3.2.3 vendor/libgit2/src/win32/error.c
rugged-1.4.4 vendor/libgit2/src/win32/error.c
rugged-1.3.2.1 vendor/libgit2/src/win32/error.c
rugged-1.4.3 vendor/libgit2/src/win32/error.c
rugged-1.3.2 vendor/libgit2/src/win32/error.c
rugged-1.4.2 vendor/libgit2/src/win32/error.c
rugged-1.3.1 vendor/libgit2/src/win32/error.c
rugged-1.3.0 vendor/libgit2/src/win32/error.c
rugged-1.2.0 vendor/libgit2/src/win32/error.c
rugged-1.1.1 vendor/libgit2/src/win32/error.c
rugged-1.1.0 vendor/libgit2/src/win32/error.c
rugged-1.0.1 vendor/libgit2/src/win32/error.c
rugged-0.28.5 vendor/libgit2/src/win32/error.c