aboutsummaryrefslogtreecommitdiffstats
path: root/rtp.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-08-31 14:03:18 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-08-31 14:03:18 +0000
commit22b635dce9a991053e720761bbecd1028969c15e (patch)
tree65c6d9afd4faba53d0690bd2510904b5bfd6f210 /rtp.c
parentf5ced302eff49ed5bfdaf46b583fd3bbf782facd (diff)
Be sure to do ntohl before considering extended field
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3691 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'rtp.c')
-rwxr-xr-xrtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtp.c b/rtp.c
index 44680683e..07c022e23 100755
--- a/rtp.c
+++ b/rtp.c
@@ -449,7 +449,7 @@ struct ast_frame *ast_rtp_read(struct ast_rtp *rtp)
if (ext) {
/* RTP Extension present */
hdrlen += 4;
- hdrlen += (rtpheader[3] & 0xffff) << 2;
+ hdrlen += (ntohl(rtpheader[3]) & 0xffff) << 2;
}
if (res < hdrlen) {