From: Daira Hopwood <daira@jacaranda.org>
Date: Tue, 28 Oct 2014 16:19:25 +0000 (+0000)
Subject: Remove redundant initialize_com function.
X-Git-Url: https://git.rkrishnan.org/vdrive/nxhtml.html?a=commitdiff_plain;h=b5867c6833cd2f39bc95eab18c003a2b6b3281aa;p=tahoe-lafs%2Ftahoe-lafs.git

Remove redundant initialize_com function.

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
---

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];