diff options
Diffstat (limited to 'gdb/gmp-utils.c')
-rw-r--r-- | gdb/gmp-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/gmp-utils.c b/gdb/gmp-utils.c index 13fa61d..b5e0628 100644 --- a/gdb/gmp-utils.c +++ b/gdb/gmp-utils.c @@ -153,9 +153,9 @@ gdb_mpz::export_bits (gdb::array_view<gdb_byte> buf, int endian, bool unsigned_p /* Do the export into a buffer allocated by GMP itself; that way, we can detect cases where BUF is not large enough to export - our value, and thus avoid a buffer overlow. Normally, this should + our value, and thus avoid a buffer overflow. Normally, this should never happen, since we verified earlier that the buffer is large - enough to accomodate our value, but doing this allows us to be + enough to accommodate our value, but doing this allows us to be extra safe with the export. After verification that the export behaved as expected, we will |