From b5867c6833cd2f39bc95eab18c003a2b6b3281aa Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Tue, 28 Oct 2014 16:19:25 +0000 Subject: [PATCH] Remove redundant initialize_com function. Signed-off-by: Daira Hopwood --- .../build_helpers/windows/installer/installer/installer.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/misc/build_helpers/windows/installer/installer/installer.cpp b/misc/build_helpers/windows/installer/installer/installer.cpp index 98d0bd47..a22df486 100644 --- a/misc/build_helpers/windows/installer/installer/installer.cpp +++ b/misc/build_helpers/windows/installer/installer/installer.cpp @@ -20,7 +20,6 @@ int wmain(int argc, wchar_t *argv[]); wchar_t * get_default_destination_dir(); -void initialize_com(); void self_extract(wchar_t *destination_dir); void unzip_from_executable(wchar_t *executable_path, wchar_t *destination_dir); size_t read_uint32_le(unsigned char *b); @@ -53,8 +52,6 @@ int wmain(int argc, wchar_t *argv[]) { } wchar_t *destination_dir = (argc >= 2) ? argv[1] : get_default_destination_dir(); - initialize_com(); - self_extract(destination_dir); install_python(destination_dir); @@ -67,9 +64,6 @@ wchar_t * get_default_destination_dir() { return L"C:\\tahoe\\windowstest"; } -void initialize_com() { -} - void self_extract(wchar_t *destination_dir) { wchar_t executable_path[MAX_PATH]; -- 2.45.2