]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix unit tests on MSVC2013.
authorNick Mathewson <nickm@torproject.org>
Tue, 26 May 2015 14:24:21 +0000 (10:24 -0400)
committerNick Mathewson <nickm@torproject.org>
Tue, 26 May 2015 14:34:07 +0000 (10:34 -0400)
Patch from "NewEraCracker."  Fixes bug16030; bugfix on 0.2.6.2-alpha.

changes/bug16030 [new file with mode: 0644]
src/test/test_channel.c

diff --git a/changes/bug16030 b/changes/bug16030
new file mode 100644 (file)
index 0000000..c14fd62
--- /dev/null
@@ -0,0 +1,3 @@
+  o Minor bugfixes (tests):
+    - Fix a crash in the unit tests on MSVC2013.  Fixes bug 16030; bugfix on
+      0.2.6.2-alpha.  Patch from "NewEraCracker".
\ No newline at end of file
index 6cf66493a8242b3583f0263db3b026ad1d056087..e11ac3f3cca878f163ca008c59ec81cca7ec7ce1 100644 (file)
@@ -420,6 +420,7 @@ new_fake_channel(void)
 
   chan->close = chan_test_close;
   chan->get_overhead_estimate = chan_test_get_overhead_estimate;
+  chan->get_remote_descr = chan_test_get_remote_descr;
   chan->num_bytes_queued = chan_test_num_bytes_queued;
   chan->num_cells_writeable = chan_test_num_cells_writeable;
   chan->write_cell = chan_test_write_cell;
@@ -615,7 +616,6 @@ test_channel_dumpstats(void *arg)
   /* Test channel_dump_statistics */
   ch->describe_transport = chan_test_describe_transport;
   ch->dumpstats = chan_test_dumpstats;
-  ch->get_remote_descr = chan_test_get_remote_descr;
   ch->is_canonical = chan_test_is_canonical;
   old_count = test_dumpstats_calls;
   channel_dump_statistics(ch, LOG_DEBUG);