mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +00:00
Merged revisions 316265 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r316265 | russell | 2011-05-03 14:55:49 -0500 (Tue, 03 May 2011) | 5 lines Fix a bunch of compiler warnings generated by gcc 4.6.0. Most of these are -Wunused-but-set-variable, but there were a few others mixed in here, as well. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@316293 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -664,7 +664,6 @@ struct ast_frame *ast_udptl_read(struct ast_udptl *udptl)
|
||||
int res;
|
||||
struct ast_sockaddr addr;
|
||||
uint16_t seqno = 0;
|
||||
uint16_t *udptlheader;
|
||||
|
||||
/* Cache where the header will go */
|
||||
res = ast_recvfrom(udptl->fd,
|
||||
@@ -672,7 +671,6 @@ struct ast_frame *ast_udptl_read(struct ast_udptl *udptl)
|
||||
sizeof(udptl->rawdata) - AST_FRIENDLY_OFFSET,
|
||||
0,
|
||||
&addr);
|
||||
udptlheader = (uint16_t *)(udptl->rawdata + AST_FRIENDLY_OFFSET);
|
||||
if (res < 0) {
|
||||
if (errno != EAGAIN)
|
||||
ast_log(LOG_WARNING, "(%s): UDPTL read error: %s\n",
|
||||
|
Reference in New Issue
Block a user