~sipe-collab/sipe-collab/gstreamer-plugins-base

« back to all changes in this revision

Viewing changes to gst-libs/gst/sdp/gstsdpmessage.c

  • Committer: Sebastian Dröge
  • Date: 2014-04-19 13:47:47 UTC
  • mfrom: (1.1.23)
  • Revision ID: git-v1:d06393f82dba0d5f13ec2e66275d75cf8178fe5c
Merge tag 'upstream/1.2.4'

Upstream version 1.2.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
436
436
  if (nettype && strcmp (nettype, "IN") != 0)
437
437
    return FALSE;
438
438
 
439
 
  iaddr = g_inet_address_new_from_string (addr);
 
439
  /* guard against parse failures */
 
440
  if ((iaddr = g_inet_address_new_from_string (addr)) == NULL)
 
441
    return FALSE;
 
442
 
440
443
  ret = g_inet_address_get_is_multicast (iaddr);
441
444
  g_object_unref (iaddr);
442
445