Changeset 159380 in webkit


Ignore:
Timestamp:
Nov 16, 2013 11:14:14 AM (10 years ago)
Author:
ap@apple.com
Message:

WebCrypto no longer uses sequences of ArrayBuffers
https://bugs.webkit.org/show_bug.cgi?id=124451

Build fix.

  • crypto/mac/CryptoAlgorithmHMACMac.cpp: (WebCore::calculateSignature):

Now that the function became shorter, clang realized that a variable was used
uninitialized in an impossible code path.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r159379 r159380  
     12013-11-16  Alexey Proskuryakov  <ap@apple.com>
     2
     3        WebCrypto no longer uses sequences of ArrayBuffers
     4        https://bugs.webkit.org/show_bug.cgi?id=124451
     5
     6        Build fix.
     7
     8        * crypto/mac/CryptoAlgorithmHMACMac.cpp: (WebCore::calculateSignature):
     9        Now that the function became shorter, clang realized that a variable was used
     10        uninitialized in an impossible code path.
     11
    1122013-11-16  Alexey Proskuryakov  <ap@apple.com>
    213
  • trunk/Source/WebCore/crypto/mac/CryptoAlgorithmHMACMac.cpp

    r159379 r159380  
    8181    default:
    8282        ASSERT_NOT_REACHED();
     83        return Vector<unsigned char>();
    8384    }
    8485
Note: See TracChangeset for help on using the changeset viewer.