mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-12 21:58:50 +01:00
* secmem.c (lock_pool) [_AIX]: Also set errno.
This commit is contained in:
parent
2f0a98ad35
commit
7164a0f754
@ -1,3 +1,7 @@
|
||||
2004-02-24 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* secmem.c (lock_pool) [_AIX]: Also set errno.
|
||||
|
||||
2004-01-13 David Shaw <dshaw@localhost.localdomain>
|
||||
|
||||
* argparse.c (initialize): Avoid a number of -Wformat-nonliteral
|
||||
|
@ -138,7 +138,8 @@ lock_pool( void *p, size_t n )
|
||||
processes are clogging up the memory. To get this problem out
|
||||
of the way we simply don't try to lock the memory at all.
|
||||
*/
|
||||
err = EPERM;
|
||||
errno = EPERM;
|
||||
err = errno;
|
||||
# else /*!_AIX*/
|
||||
err = plock( DATLOCK );
|
||||
if( err && errno )
|
||||
|
Loading…
Reference in New Issue
Block a user