Commit e32e7ca0 authored by unknown's avatar unknown

Add missing DBUG_RETURN()

parent 8a7bc052
...@@ -890,7 +890,7 @@ TIME_to_gmt_sec(const TIME *t, const TIME_ZONE_INFO *sp, bool *in_dst_time_gap) ...@@ -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"); DBUG_ENTER("TIME_to_gmt_sec");
if (!validate_timestamp_range(t)) if (!validate_timestamp_range(t))
return 0; DBUG_RETURN(0);
/* We need this for correct leap seconds handling */ /* We need this for correct leap seconds handling */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment