X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=lttv%2Fmodules%2Fgui%2Flttvwindow%2Flttvwindow%2Ftimebar.c;h=dabdb7cfffae5d268672430f21c7bb35dcf49b43;hb=b9ce0bad7daf7c0a2333c91fdb1e35d602afe17f;hp=9673ec669a97c551f9054f2cd2eaeebfe48f8bd3;hpb=4172f013ca271667f6be4735216e9f69578a88fd;p=lttv.git diff --git a/lttv/modules/gui/lttvwindow/lttvwindow/timebar.c b/lttv/modules/gui/lttvwindow/lttvwindow/timebar.c index 9673ec66..dabdb7cf 100644 --- a/lttv/modules/gui/lttvwindow/lttvwindow/timebar.c +++ b/lttv/modules/gui/lttvwindow/lttvwindow/timebar.c @@ -12,8 +12,8 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, - * MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + * MA 02110-1301, USA. */ #include "timebar.h" @@ -21,7 +21,7 @@ #include #include -#include +#include enum { SIGNAL_START_TIME_CHANGED, @@ -242,15 +242,9 @@ void timebar_set_minmax_time(Timebar *timebar, ) { return; } - - if (min_time != NULL) { - timebar->min_time = *min_time; - } - - if (max_time != NULL) { - timebar->max_time = *max_time; - } - + /* null-checked already */ + timebar->min_time = *min_time; + timebar->max_time = *max_time; if (ltt_time_compare(timebar->min_time, timebar->max_time) == 0) {