mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-17 09:10:08 +02:00
23 lines
713 B
Plaintext
23 lines
713 B
Plaintext
From 7e3a455500f9accf9bf34377dada312690c27a1a Mon Sep 17 00:00:00 2001
|
|
From: Winston Durand <me@winstondurand.com>
|
|
Date: Wed, 30 Nov 2016 05:18:11 +0000
|
|
Subject: removed double semicolon
|
|
|
|
|
|
diff --git a/src/libsodium/sodium/utils.c b/src/libsodium/sodium/utils.c
|
|
index c9f11ba..c41f929 100644
|
|
--- a/src/libsodium/sodium/utils.c
|
|
+++ b/src/libsodium/sodium/utils.c
|
|
@@ -62,7 +62,7 @@ static unsigned char canary[CANARY_SIZE];
|
|
__attribute__ ((weak)) void
|
|
_sodium_memzero_as_a_weak_symbol_to_prevent_lto(void * const pnt, const size_t len)
|
|
{
|
|
- unsigned char *pnt_ = (unsigned char *) pnt;;
|
|
+ unsigned char *pnt_ = (unsigned char *) pnt;
|
|
size_t i = (size_t) 0U;
|
|
|
|
while (i < len) {
|
|
--
|
|
2.7.0
|
|
|