- Fixed bug #1001, which caused a segv (thanks to Bryce Harrington).
This commit is contained in:
Paul Beckingham 2012-06-10 16:47:27 -04:00
parent 0b75fe1311
commit fc4a71aa5c
2 changed files with 5 additions and 1 deletions

View file

@ -76,6 +76,7 @@ Bugs
characters were used in a description (thanks to Hyde Stevenson). characters were used in a description (thanks to Hyde Stevenson).
+ Fixed bug #990, which prevents color precedence to be applied correctly for + Fixed bug #990, which prevents color precedence to be applied correctly for
tagged tasks. tagged tasks.
+ Fixed bug #1001, which caused a segv (thanks to Bryce Harrington).
+ Fixed bug #1008, which failed to remove tasks with the special tag '+nocal' + Fixed bug #1008, which failed to remove tasks with the special tag '+nocal'
from the calendar report output with 'calendar.details=full' set (thanks to from the calendar report output with 'calendar.details=full' set (thanks to
Bryan Kam). Bryan Kam).

View file

@ -396,7 +396,10 @@ int Context::dispatch (std::string &out)
return rc; return rc;
} }
return commands["help"]->execute (out); if (commands["help"])
return commands["help"]->execute (out);
return 1;
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////