Text   |  XML   |  ReML   |   Visible Warnings:

Null Pointer Dereference  at rtp_analysis.c:549

No properties have been set. | edit properties
Jump to warning location ↓ warning details...
Show Events | Options

rtp_packet_add_info

(/home/sate/Testcases/c/cve/wireshark-1.2.0/gtk/rtp_analysis.c)expand/collapse
Show more  
 530  static int rtp_packet_add_info(GtkWidget *list, user_data_t * user_data,
 531          tap_rtp_stat_t *statinfo, packet_info *pinfo,
 532          const struct _rtp_info *rtpinfo)
 533  {
 534          guint16 msecs;
 535          gchar timeStr[32];
 536          struct tm *tm_tmp;
 537          time_t then;
 538          gchar status[40];
 539          gchar color_str[14];
 540          then = pinfo->fd->abs_ts.secs;
 541          msecs = (guint16)(pinfo->fd->abs_ts.nsecs/1000000);
 542          tm_tmp = localtime(&then);
 543          g_snprintf(timeStr,sizeof(timeStr),"%02d/%02d/%04d %02d:%02d:%02d.%03d",
 544                  tm_tmp->tm_mon + 1,
 545                  tm_tmp->tm_mday,
 546                  tm_tmp->tm_year + 1900,
 547                  tm_tmp->tm_hour,
 548                  tm_tmp->tm_min,
 549                  tm_tmp->tm_sec,
 550                  msecs);
Show more  




Change Warning 4411.30171 : Null Pointer Dereference

Priority:
State:
Finding:
Owner:
Note: