diff options
author | drath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2007-05-05 11:02:03 +0000 |
---|---|---|
committer | drath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2007-05-05 11:02:03 +0000 |
commit | 054b091623edcdc962e8c65066039f38edf2f814 (patch) | |
tree | cab15bc2ad80709893da11027a38e2514e14ed39 /src/helper | |
parent | a1562e8f560759cdd5c36c957bf12137eda9e419 (diff) | |
download | openocd_libswd-054b091623edcdc962e8c65066039f38edf2f814.tar.gz openocd_libswd-054b091623edcdc962e8c65066039f38edf2f814.tar.bz2 openocd_libswd-054b091623edcdc962e8c65066039f38edf2f814.tar.xz openocd_libswd-054b091623edcdc962e8c65066039f38edf2f814.zip |
- further work on ETB decoding (not yet functional)
- fixed several uses of uninitialized bits (Thanks to Vincent Palatin for finding and fixing these bugs)
git-svn-id: svn://svn.berlios.de/openocd/trunk@145 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper')
-rw-r--r-- | src/helper/binarybuffer.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/helper/binarybuffer.c b/src/helper/binarybuffer.c index acc8237e..7d978915 100644 --- a/src/helper/binarybuffer.c +++ b/src/helper/binarybuffer.c @@ -354,7 +354,12 @@ int str_to_buf(char* str, int str_len, u8 *buf, int buf_len, int radix) } for (j = 0; j < CEIL(buf_len, 8); j++) - buf[j] = b256_buf[j]; + { + if (j < b256_len) + buf[j] = b256_buf[j]; + else + buf[j] = 0; + } /* mask out bits that don't belong to the buffer */ if (buf_len % 8) |