krb5: bump to version 1.13.3 and fix uninitialized warning/error 2129/head
authorAlexandru Ardelean <ardeleanalex@gmail.com>
Tue, 15 Dec 2015 09:50:44 +0000 (11:50 +0200)
committerAlexandru Ardelean <ardeleanalex@gmail.com>
Tue, 15 Dec 2015 09:58:22 +0000 (11:58 +0200)
commitc03066deca07e345bfcddadb3ecd254959bfc0a0
tree449ffd85cf97d2e432021445b0e523f43ab2e712
parent169e3c152a3a3cf4909dc630ca31bf2fe291f736
krb5: bump to version 1.13.3 and fix uninitialized warning/error

Version 1.13.3 has a tar.gz so the OpenWRT default Build/Prepare
rule can be used with MD5 checksum.

Add patch to fix build:
ktutil_funcs.c: In function 'ktutil_delete':
ktutil_funcs.c:75:28: error: 'prev' may be used uninitialized in this function [-Werror=maybe-uninitialized]
                 prev->next = lp->next;

There does not seem to be a way for 'prev' being uninitialized
(logically), however the compiler does not see that, because
'prev' is dependent on i >= 1.
So, we just need to initialize it to NULL.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
net/krb5/Makefile
net/krb5/patches/002-fix-uninitialized-warning-error.patch [new file with mode: 0644]