diff options
author | James Morris <james.l.morris@oracle.com> | 2015-06-18 16:28:40 +0300 |
---|---|---|
committer | James Morris <james.l.morris@oracle.com> | 2015-06-18 16:28:40 +0300 |
commit | b3bddffd35a0b77eee89760eb94cafa18dc431f5 (patch) | |
tree | 58c0f6c79c121dfbe91f2058210c79d7ee25acc2 /security/integrity/ima/ima_template_lib.c | |
parent | 49afd7289bd937401c5f7faa193054bc3c41dad6 (diff) | |
parent | 24fd03c87695a76f0517df42a37e51b1597d2c8a (diff) | |
download | linux-b3bddffd35a0b77eee89760eb94cafa18dc431f5.tar.xz |
Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity into next
Diffstat (limited to 'security/integrity/ima/ima_template_lib.c')
-rw-r--r-- | security/integrity/ima/ima_template_lib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/security/integrity/ima/ima_template_lib.c b/security/integrity/ima/ima_template_lib.c index de0ce4fbdf69..2934e3d377f1 100644 --- a/security/integrity/ima/ima_template_lib.c +++ b/security/integrity/ima/ima_template_lib.c @@ -70,7 +70,8 @@ static void ima_show_template_data_ascii(struct seq_file *m, enum data_formats datafmt, struct ima_field_data *field_data) { - u8 *buf_ptr = field_data->data, buflen = field_data->len; + u8 *buf_ptr = field_data->data; + u32 buflen = field_data->len; switch (datafmt) { case DATA_FMT_DIGEST_WITH_ALGO: |