summaryrefslogtreecommitdiffstats
path: root/gpttool
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-10-29 14:12:46 -0700
committerElliott Hughes <enh@google.com>2013-10-29 14:12:46 -0700
commit14e28d39f7f094225c1ddae8fa43bd792c621a8f (patch)
treef4d986698864a59ea87af253247753768916be37 /gpttool
parent98f87d92d89079f274374409efcf57ca52b13c1f (diff)
downloadsystem_core-14e28d39f7f094225c1ddae8fa43bd792c621a8f.tar.gz
system_core-14e28d39f7f094225c1ddae8fa43bd792c621a8f.tar.bz2
system_core-14e28d39f7f094225c1ddae8fa43bd792c621a8f.zip
Fix a bunch of small system/core bugs.
Missing frees in: adb/file_sync_client.c fastboot/fastboot.c libsparse/output_file.c Missing closedirs in: adb/file_sync_service.c cpio/mkbootfs.c libcutils/dir_hash.c Potential buffer overrun in: gpttool/gpttool.c Incorrect NULL check in: libsparse/backed_block.c Bug: https://code.google.com/p/android/issues/detail?id=61564 Change-Id: If97838a9e73a77aef7f416c31c237ce1fca4ce21
Diffstat (limited to 'gpttool')
-rw-r--r--gpttool/gpttool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gpttool/gpttool.c b/gpttool/gpttool.c
index 05d51779c..d3f08fe14 100644
--- a/gpttool/gpttool.c
+++ b/gpttool/gpttool.c
@@ -161,7 +161,7 @@ void show(struct ptable *ptbl)
{
struct efi_entry *entry = ptbl->entry;
unsigned n, m;
- char name[EFI_NAMELEN];
+ char name[EFI_NAMELEN + 1];
fprintf(stderr,"ptn start block end block name\n");
fprintf(stderr,"---- ------------- ------------- --------------------\n");