瀏覽代碼

cmd/syncthing: Listening on a 0 port is not valid (fixes #2926)

Audrius Butkevicius 9 年之前
父節點
當前提交
393798098c
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      cmd/syncthing/main.go

+ 3 - 0
cmd/syncthing/main.go

@@ -721,6 +721,9 @@ func syncthingMain(runtimeOptions RuntimeOptions) {
 	if err != nil {
 		l.Fatalln("Bad listen address:", err)
 	}
+	if addr.Port == 0 {
+		l.Fatalf("Listen address %s: invalid port", uri)
+	}
 
 	// Start UPnP
 	var upnpService *upnp.Service