]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Remove redundant initialize_com function.
authorDaira Hopwood <daira@jacaranda.org>
Tue, 28 Oct 2014 16:19:25 +0000 (16:19 +0000)
committerDaira Hopwood <daira@jacaranda.org>
Tue, 28 Oct 2014 16:19:25 +0000 (16:19 +0000)
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
misc/build_helpers/windows/installer/installer/installer.cpp

index 98d0bd47d7babd20335fe2ee5cef9893fe69d8b9..a22df4865f88cc9b21f1c3a4bbff2502d480ae63 100644 (file)
@@ -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];