Author: rmudgett
Date: Fri Dec 19 14:56:12 2014
New Revision: 429870

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=429870
Log:
res_http_websocket.c: Fix incorrect use of sizeof in ast_websocket_write().

This won't fix the reported issue but it is an incorrect use of sizeof.

ASTERISK-24566
Reported by:  Badalian Vyacheslav
........

Merged revisions 429867 from http://svn.asterisk.org/svn/asterisk/branches/11
........

Merged revisions 429868 from http://svn.asterisk.org/svn/asterisk/branches/13

Modified:
    trunk/   (props changed)
    trunk/res/res_http_websocket.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-13-merged' - no diff available.

Modified: trunk/res/res_http_websocket.c
URL: 
http://svnview.digium.com/svn/asterisk/trunk/res/res_http_websocket.c?view=diff&rev=429870&r1=429869&r2=429870
==============================================================================
--- trunk/res/res_http_websocket.c (original)
+++ trunk/res/res_http_websocket.c Fri Dec 19 14:56:12 2014
@@ -273,7 +273,7 @@
 {
        size_t header_size = 2; /* The minimum size of a websocket frame is 2 
bytes */
        char *frame;
-       uint64_t length = 0;
+       uint64_t length;
 
        if (actual_length < 126) {
                length = actual_length;
@@ -288,7 +288,7 @@
        }
 
        frame = ast_alloca(header_size);
-       memset(frame, 0, sizeof(*frame));
+       memset(frame, 0, header_size);
 
        frame[0] = opcode | 0x80;
        frame[1] = length;


-- 
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

svn-commits mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/svn-commits

Reply via email to