mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
last hour fixes.
This commit is contained in:
parent
94e6596bec
commit
7bf54c22e9
11 changed files with 41 additions and 38 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-04-27 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* memory.c (out_of_core): Print an explanation on reasons why
|
||||
secret memory can get exhausted.
|
||||
|
||||
2001-04-23 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* http.c (http_wait_response): Implement new flag to inhibit the
|
||||
|
|
|
@ -383,9 +383,14 @@ m_dump_table( const char *prefix )
|
|||
static void
|
||||
out_of_core(size_t n, int secure)
|
||||
{
|
||||
log_fatal("out of %s memory while allocating %u bytes\n",
|
||||
secure? "secure":"" ,(unsigned)n );
|
||||
|
||||
log_error ("out of %s memory while allocating %u bytes\n",
|
||||
secure? "secure":"" ,(unsigned)n );
|
||||
if (secure) {
|
||||
/*secmem_dump_stats ();*/
|
||||
log_info ("(this may be caused by too many secret keys used "
|
||||
"simultaneously or due to excessive large key sizes)\n");
|
||||
}
|
||||
exit (2);
|
||||
}
|
||||
|
||||
/****************
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue