diff options
| author | Peter Jones <pjones@redhat.com> | 2021-03-09 11:54:58 -0500 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2021-03-10 15:54:20 -0500 |
| commit | 766aac4d5cfbe76026be5ce718b0883ee211f323 (patch) | |
| tree | 56b15cac9a128b4285d58bc1e2a4b12cff5ed881 /sbat.c | |
| parent | 78809820b5a3f79a0bfbec00e630e40011acf4ec (diff) | |
| download | efi-boot-shim-766aac4d5cfbe76026be5ce718b0883ee211f323.tar.gz efi-boot-shim-766aac4d5cfbe76026be5ce718b0883ee211f323.zip | |
Consolidate most of our standard lib functions to lib
Signed-off-by: Peter Jones <pjones@redhat.com>
Diffstat (limited to 'sbat.c')
| -rw-r--r-- | sbat.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -48,7 +48,7 @@ parse_sbat_section(char *section_base, size_t section_size, efi_status = EFI_INVALID_PARAMETER; goto err; } - allocsz += strlena(row->columns[i]) + 1; + allocsz += strlen(row->columns[i]) + 1; } n++; } @@ -226,7 +226,7 @@ parse_sbat_var_data(list_t *entry_list, UINT8 *data, UINTN datasize) efi_status = EFI_INVALID_PARAMETER; goto err; } - allocsz += strlena(row->columns[i]) + 1; + allocsz += strlen(row->columns[i]) + 1; } n++; } |
