diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-02-05 16:03:38 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-02-05 16:03:38 +0200 |
commit | 4503191a037be58e769613281f90efa5310e547e (patch) | |
tree | 47b9c65c609b1f78be32f9b0371afb79ed9b0694 | |
parent | e93dcc2ecabee46d31aedf9f4ddc8058956c78ad (diff) |
Initialize the sign member of MYSQL_TIME image
-rw-r--r-- | odb/qt/date-time/mysql/qdate-time-traits.hxx | 2 | ||||
-rw-r--r-- | odb/qt/date-time/mysql/qdate-traits.hxx | 1 | ||||
-rw-r--r-- | odb/qt/date-time/mysql/qtime-traits.hxx | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/odb/qt/date-time/mysql/qdate-time-traits.hxx b/odb/qt/date-time/mysql/qdate-time-traits.hxx index 8e09251..ac4c1a6 100644 --- a/odb/qt/date-time/mysql/qdate-time-traits.hxx +++ b/odb/qt/date-time/mysql/qdate-time-traits.hxx @@ -50,6 +50,7 @@ namespace odb throw odb::qt::date_time::value_out_of_range (); is_null = false; + i.neg = false; const QDate& d (v.date ()); i.year = static_cast<unsigned int> (d.year ()); @@ -99,6 +100,7 @@ namespace odb throw odb::qt::date_time::value_out_of_range (); is_null = false; + i.neg = false; const QDate& d (v.date ()); i.year = static_cast<unsigned int> (d.year ()); diff --git a/odb/qt/date-time/mysql/qdate-traits.hxx b/odb/qt/date-time/mysql/qdate-traits.hxx index 716cc7f..d3dc1f1 100644 --- a/odb/qt/date-time/mysql/qdate-traits.hxx +++ b/odb/qt/date-time/mysql/qdate-traits.hxx @@ -47,6 +47,7 @@ namespace odb else { is_null = false; + i.neg = false; i.year = static_cast<unsigned int> (v.year ()); i.month = static_cast<unsigned int> (v.month ()); diff --git a/odb/qt/date-time/mysql/qtime-traits.hxx b/odb/qt/date-time/mysql/qtime-traits.hxx index ce277f0..b7cf84b 100644 --- a/odb/qt/date-time/mysql/qtime-traits.hxx +++ b/odb/qt/date-time/mysql/qtime-traits.hxx @@ -45,8 +45,8 @@ namespace odb else { is_null = false; - i.neg = false; + i.day = 0; i.hour = static_cast<unsigned int> (v.hour ()); |