- #1511 sync init crashes if client certification file is empty or invalid
        (thanks to Marton Suranyi).

Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
Marton Suranyi 2014-01-31 08:59:33 -05:00 committed by Paul Beckingham
parent 27d879540c
commit c7ebe6b3e2
3 changed files with 4 additions and 1 deletions

View file

@ -98,6 +98,7 @@ The following submitted code, packages or analysis, and deserve special thanks:
Elias Probst Elias Probst
Renato Alves Renato Alves
Natanael Copa Natanael Copa
Marton Suranyi
Thanks to the following, who submitted detailed bug reports and excellent Thanks to the following, who submitted detailed bug reports and excellent
suggestions: suggestions:

View file

@ -18,6 +18,8 @@ Features
+ Old-style color names including underscores are no longer supported. + Old-style color names including underscores are no longer supported.
Bugs Bugs
+ #1511 sync init crashes if client certification file is empty or invalid
(thanks to Marton Suranyi).
+ #1503 build failure with musl libc due to undefined GLOB_BRACE and GLOB_TILDE + #1503 build failure with musl libc due to undefined GLOB_BRACE and GLOB_TILDE
(thanks to Natanael Copa) (thanks to Natanael Copa)
+ #1473 Make TASK_RCDIR customizable (thanks to Elias Probst). + #1473 Make TASK_RCDIR customizable (thanks to Elias Probst).

View file

@ -1,5 +1,4 @@
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// taskwarrior - a command line task list manager.
// //
// Copyright 2006 - 2014, Paul Beckingham, Federico Hernandez. // Copyright 2006 - 2014, Paul Beckingham, Federico Hernandez.
// //
@ -103,6 +102,7 @@ TLSClient::TLSClient ()
: _ca ("") : _ca ("")
, _cert ("") , _cert ("")
, _key ("") , _key ("")
, _session(0)
, _socket (0) , _socket (0)
, _limit (0) , _limit (0)
, _debug (false) , _debug (false)