[SSSD] [PATCH 2/4] Add function to safely wipe memory.

2012-12-04 Thread Simo Sorce
This is useful for wiping passwords, as it prevents the compiler from optimizing out a memset to zero before a free() --- src/util/util.c |9 + src/util/util.h |9 + 2 files changed, 18 insertions(+), 0 deletions(-) diff --git a/src/util/util.c b/src/util/util.c index ab9

[SSSD] [PATCH 2/4] Add function to safely wipe memory.

2012-12-03 Thread Simo Sorce
This is useful for wiping passwords, as it prevents the compiler from optimizing out a memset to zero before a free() --- src/util/util.c |9 + src/util/util.h |9 + 2 files changed, 18 insertions(+), 0 deletions(-) diff --git a/src/util/util.c b/src/util/util.c index ab9

Re: [SSSD] [PATCH 2/4] Add function to safely wipe memory.

2012-12-03 Thread Simo Sorce
On Mon, 2012-12-03 at 15:34 +0100, Pavel Březina wrote: > On 12/02/2012 05:59 AM, Simo Sorce wrote: > > This is useful for wiping passwords, as it prevents the compiler from > > optimizing out a memset to zero before a free() > > --- > > src/util/util.c |9 + > > src/util/util.h |

Re: [SSSD] [PATCH 2/4] Add function to safely wipe memory.

2012-12-03 Thread Pavel Březina
On 12/02/2012 05:59 AM, Simo Sorce wrote: This is useful for wiping passwords, as it prevents the compiler from optimizing out a memset to zero before a free() --- src/util/util.c |9 + src/util/util.h |9 + 2 files changed, 18 insertions(+), 0 deletions(-) diff --git

[SSSD] [PATCH 2/4] Add function to safely wipe memory.

2012-12-01 Thread Simo Sorce
This is useful for wiping passwords, as it prevents the compiler from optimizing out a memset to zero before a free() --- src/util/util.c |9 + src/util/util.h |9 + 2 files changed, 18 insertions(+), 0 deletions(-) diff --git a/src/util/util.c b/src/util/util.c index ab9

[SSSD] [PATCH 2/4] Add function to safely wipe memory.

2012-11-23 Thread Simo Sorce
This is useful for wiping passwords, as it prevents the compiler from optimizing out a memset to zero before a free() --- src/util/util.c |9 + src/util/util.h |9 + 2 files changed, 18 insertions(+), 0 deletions(-) diff --git a/src/util/util.c b/src/util/util.c index ab9

[SSSD] [PATCH 2/4] Add function to safely wipe memory.

2012-11-07 Thread Simo Sorce
This is useful for wiping passwords, as it prevents the compiler from optimizing out a memset to zero before a free() --- src/util/util.c |9 + src/util/util.h | 10 ++ 2 files changed, 19 insertions(+), 0 deletions(-) diff --git a/src/util/util.c b/src/util/util.c index b8

[SSSD] [PATCH 2/4] Add function to safely wipe memory.

2012-10-31 Thread Simo Sorce
This is useful for wiping passwords, as it prevents the compiler from optimizing out a memset to zero before a free() --- src/util/util.c |9 + src/util/util.h | 10 ++ 2 files changed, 19 insertions(+), 0 deletions(-) diff --git a/src/util/util.c b/src/util/util.c index b8

[SSSD] [PATCH 2/4] Add function to safely wipe memory.

2012-10-23 Thread Simo Sorce
This is useful for wiping passwords, as it prevents the compiler from optimizing out a memset to zero before a free() Signed-off-by: Simo Sorce --- src/util/util.c | 9 + src/util/util.h | 10 ++ 2 files changed, 19 insertions(+) diff --git a/src/util/util.c b/src/util/util.c i