mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
* findkey.c (agent_public_key_from_file): Fixed array assignment.
This was the cause for random segvs. * call-agent.c (gpgsm_agent_readkey): New.
This commit is contained in:
parent
99f403b015
commit
a2d1673d66
8 changed files with 91 additions and 24 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-07-25 Werner Koch <wk@g10code.com>
|
||||
|
||||
* findkey.c (agent_public_key_from_file): Fixed array assignment.
|
||||
This was the cause for random segvs.
|
||||
|
||||
2005-06-29 Werner Koch <wk@g10code.com>
|
||||
|
||||
* command-ssh.c (data_sign): Removed empty statement.
|
||||
|
|
|
@ -671,7 +671,7 @@ agent_public_key_from_file (ctrl_t ctrl,
|
|||
*p++ = *s;
|
||||
p = stpcpy (p, " %m)");
|
||||
assert (argidx < DIM (args));
|
||||
args[argidx++] = array[idx];
|
||||
args[argidx++] = &array[idx];
|
||||
}
|
||||
*p++ = ')';
|
||||
if (uri)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue