Text   |  XML   |  ReML   |   Visible Warnings:

Null Pointer Dereference  at ftypes.c:247

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

val_from_unparsed

(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/ftypes/ftype-string.c)expand/collapse
Show more  
 155  val_from_unparsed(fvalue_t *fv, char *s, gboolean allow_partial_value _U_, LogFunc logfunc)
 156  {
 157          fvalue_t *fv_bytes;
 158   
 159          /* Free up the old value, if we have one */
 160          string_fvalue_free(fv);
 161   
 162          /* Does this look like a byte-string? */
 163[+]         fv_bytes = fvalue_from_unparsed(FT_BYTES, s, TRUE, NULL);
expand/collapse

fvalue_from_unparsed

(/home/sate/Testcases/c/cve/wireshark-1.2.0/epan/ftypes/ftypes.c)expand/collapse
Show more  
 234  fvalue_t*
 235  fvalue_from_unparsed(ftenum_t ftype, char *s, gboolean allow_partial_value, LogFunc logfunc)
 236  {
 237          fvalue_t        *fv;
 238   
 239          fv = fvalue_new(ftype);
 240          if (fv->ftype->val_from_unparsed) {
 241                  if (fv->ftype->val_from_unparsed(fv, s, allow_partial_value, logfunc)) {
 242                          return fv;
 243                  }
 244          }
 245          else {
 246                  logfunc("\"%s\" cannot be converted to %s.",
 247                                  s, ftype_pretty_name(ftype));
Show more  
Show more  




Change Warning 1120.29859 : Null Pointer Dereference

Because they are very similar, this warning shares annotations with warning 1120.30796.

Priority:
State:
Finding:
Owner:
Note: