diff options
author | unknown <petr/cps@outpost.site> | 2006-11-05 23:25:34 +0300 |
---|---|---|
committer | unknown <petr/cps@outpost.site> | 2006-11-05 23:25:34 +0300 |
commit | e32e7ca0603a70a260194de269899882dd5b8f3a (patch) | |
tree | 2c6696c08662e07b7d7a17e2482513e50c5a4318 /sql/tztime.cc | |
parent | 8a7bc052885494b83fed51d785d9fc4b1cfa9df1 (diff) | |
download | mariadb-git-e32e7ca0603a70a260194de269899882dd5b8f3a.tar.gz |
Add missing DBUG_RETURN()
Diffstat (limited to 'sql/tztime.cc')
-rw-r--r-- | sql/tztime.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/tztime.cc b/sql/tztime.cc index 60c5e8efd71..9af33526c98 100644 --- a/sql/tztime.cc +++ b/sql/tztime.cc @@ -890,7 +890,7 @@ TIME_to_gmt_sec(const TIME *t, const TIME_ZONE_INFO *sp, bool *in_dst_time_gap) DBUG_ENTER("TIME_to_gmt_sec"); if (!validate_timestamp_range(t)) - return 0; + DBUG_RETURN(0); /* We need this for correct leap seconds handling */ |