Author: spyfeng
Date: Sun Mar 21 17:44:06 2010
New Revision: 5704

Log:
remove useless temp variable.

Modified:
   mms/mmst.c

Modified: mms/mmst.c
==============================================================================
--- mms/mmst.c  Sun Mar 21 17:38:30 2010        (r5703)
+++ mms/mmst.c  Sun Mar 21 17:44:06 2010        (r5704)
@@ -322,7 +322,6 @@ static MMSSCPacketType get_tcp_server_re
                 }
             } else {
                 int length_remaining;
-                uint8_t *dst= mms->pkt_buf;
                 int packet_id_type;
                 int tmp;
 
@@ -343,7 +342,7 @@ static MMSSCPacketType get_tcp_server_re
                     dprintf(NULL, "Incoming Buffer Length overflow: %d>%d\n",
                     mms ->pkt_buf_len, (int) sizeof(mms->pkt_buf));
                 }
-                read_result= read_bytes(mms, dst, length_remaining);
+                read_result= read_bytes(mms, mms->pkt_buf, length_remaining);
                 if(read_result != length_remaining) {
                     dprintf(NULL, "read_bytes result: %d asking for %d\n",
                             read_result, length_remaining);
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to