Bug 3797 - /wait accepts negative values
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Misc
Version: GIT MASTER
Hardware: PC Linux
: P3 minor
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2008-10-13 16:09 EDT by Ben Millwood
Modified: 2009-09-14 19:56:48 EDT
1 user (show)

See Also:


Attachments
don't allow negative wait values, don't go crazy if they do come up somehow (575 bytes, patch)
2008-10-13 16:10 EDT, Ben Millwood
error messages when /wait is used inappropriately (829 bytes, patch)
2009-03-14 15:26 EDT, Ben Millwood

Description Ben Millwood 2008-10-13 16:09:09 EDT
This is not a bug that you stumble into every day, but it's pretty stupid nonetheless. Doing /wait -1 will set the cmd_wait variable to -1 and then continuously decrements it until it reaches 0, which needless to say won't be for some time.

About-to-be-attached patch fixes the bug in two different ways at once, just in case.
Comment 1 Ben Millwood 2008-10-13 16:10:15 EDT
Created attachment 1889 [details]
don't allow negative wait values, don't go crazy if they do come up somehow
Comment 2 Ludwig Nussel 2008-11-02 11:07:18 EST
is that a bug or a feature? :) I'd rather fix it by changing the type of cmd_wait to unsigned.
Comment 3 Ben Millwood 2009-03-14 15:26:51 EDT
Created attachment 2017 [details]
error messages when /wait is used inappropriately

Making cmd_wait unsigned will just mean that
cmd_wait = atoi( Cmd_Argv( 1 ) )
where Cmd_Argv(1) is "-1" will set it to 4294967295, as far as I can tell. You will still need to identify and handle the negative case, which in my opinion should be treated as any other invalid input. As I see it, there are three choices in that regard:
1. ignore, don't wait (same as current for /wait foo)
2. ignore, wait for the default 1 frame (pretend the argument wasn't given)
3. print an error message
Attachment #1889 [details] does 2. which is somewhat inconsistent with other invalid input (but it's trivial to make it do 1. instead)
The attachment I'm just adding now does 3. and also prints an error when other invalid input is supplied.
Comment 4 Ryan C. Gordon 2009-09-14 19:56:48 EDT
This is fixed in svn revision #3797.

(I opted for choice #2.)

--ryan.