瀏覽代碼

Make missing reason_phrase into a BUG().

Nick Mathewson 6 年之前
父節點
當前提交
2385e3f667
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/or/directory.c

+ 1 - 1
src/or/directory.c

@@ -3482,7 +3482,7 @@ write_http_status_line(dir_connection_t *conn, int status,
   char *buf = NULL;
   char *datestring = NULL;
 
-  if (!reason_phrase) { /* bullet-proofing */
+  IF_BUG_ONCE(!reason_phrase) { /* bullet-proofing */
     reason_phrase = "unspecified";
   }