summaryrefslogtreecommitdiff
path: root/farstream
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@ocrete.ca>2014-05-04 00:45:40 -0400
committerOlivier CrĂȘte <olivier.crete@ocrete.ca>2014-05-04 00:45:40 -0400
commit3610fe76c1856f19595b8d966180444922ca4056 (patch)
tree30abbdc995f16505b935b453ab6fb8d34f0c0006 /farstream
parent4b1f0b5fa6bc9f435453839d4d58ca5d8a6c863e (diff)
downloadfarstream-3610fe76c1856f19595b8d966180444922ca4056.tar.gz
rtp: Check both variants, not only one!
Diffstat (limited to 'farstream')
-rw-r--r--farstream/fs-rtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/farstream/fs-rtp.c b/farstream/fs-rtp.c
index cb1d2e3e..c7311bcd 100644
--- a/farstream/fs-rtp.c
+++ b/farstream/fs-rtp.c
@@ -101,7 +101,7 @@ fs_rtp_header_extension_are_equal (FsRtpHeaderExtension *extension1,
if (extension1 == extension2)
return TRUE;
- if (!extension2 || !extension2)
+ if (!extension1 || !extension2)
return FALSE;
if (extension1->id == extension2->id &&