File Changes for chinhli
switch to commits view, user indexv293_preview2 to v293_base (2013-12-02 to 2013-12-09) v293
- src/lib/hmac.c
- lines changed 2, context: html, text, full: html, text
Per CR #12255 feedback:Add one more character and initialized all elements to zero
when declare the hmacStr array:
-char hmacStr[40];
+char hmacStr[41]="";
-char hmacStr[32];
+char hmacStr[33]="";
- lines changed 4, context: html, text, full: html, text
Use cloneStringZ(hmacStr, sizeof(hmacStr)) to null terminate the hmacStr character array safely.
switch to commits view, user index