浏览代码

Enlarge the buffer for a line in a bw file

Sebastian Hahn 9 年之前
父节点
当前提交
2b9d48791d
共有 2 个文件被更改,包括 6 次插入1 次删除
  1. 5 0
      changes/bug14125
  2. 1 1
      src/or/dirserv.c

+ 5 - 0
changes/bug14125

@@ -0,0 +1,5 @@
+  o Minor bugfixes (dirauth):
+    - Enlarge the buffer to read bw-auth generated files to avoid an
+      issue when parsing the file in dirserv_read_measured_bandwidths().
+      Bugfix on 0.2.2.1-alpha, fixes #14125.
+

+ 1 - 1
src/or/dirserv.c

@@ -2487,7 +2487,7 @@ int
 dirserv_read_measured_bandwidths(const char *from_file,
                                  smartlist_t *routerstatuses)
 {
-  char line[256];
+  char line[512];
   FILE *fp = tor_fopen_cloexec(from_file, "r");
   int applied_lines = 0;
   time_t file_time, now;