commit 1ef81eb5f7c336972fe56f15285f389cafdc96f5
Author: Simon Howard <fraggle@gmail.com>
AuthorDate: Tue Dec 14 20:55:30 2010 +0000
Commit: Simon Howard <fraggle@gmail.com>
CommitDate: Tue Dec 14 20:55:30 2010 +0000
Check that an address is provided to the -query command line option
(thanks Sander van Dijk).
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 2221
---
NEWS | 2 ++
src/d_main.c | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/NEWS b/NEWS
index 8ade803d..768ad7fd 100644
--- a/NEWS
+++ b/NEWS
@@ -79,6 +79,8 @@
exp(x)).
* The controller player in a netgame is the first player to join,
instead of just being someone who gets lucky.
+ * Check that an address is provided to the -query command line
+ option (thanks Sander van Dijk).
libtextscreen:
* The font used for the textscreen library can be forced by
diff --git a/src/d_main.c b/src/d_main.c
index 032c5caa..36382fb6 100644
--- a/src/d_main.c
+++ b/src/d_main.c
@@ -868,7 +868,7 @@ void D_DoomMain (void)
p = M_CheckParm("-query");
- if (p > 0)
+ if (p && p < myargc-1)
{
NET_QueryAddress(myargv[p+1]);
exit(0);