bug fixes
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
2011-01-21 NIIBE Yutaka <gniibe@fsij.org>
|
||||
|
||||
* src/openpgp-do.c (copy_do): Fix off-by-one error.
|
||||
|
||||
* src/openpgp.c (get_pinpad_input): Ifdef-out PINPAD_SUPPORT.
|
||||
|
||||
2011-01-19 NIIBE Yutaka <gniibe@fsij.org>
|
||||
|
||||
@@ -1164,7 +1164,7 @@ copy_do (const struct do_table_entry *do_p, int with_tag)
|
||||
return -1;
|
||||
}
|
||||
|
||||
*len_p = (res_p - len_p);
|
||||
*len_p = (res_p - len_p) - 1;
|
||||
break;
|
||||
}
|
||||
case DO_PROC_READ:
|
||||
|
||||
Reference in New Issue
Block a user