ASN.1: fix open failure check on headername

The check for a failed open on headername is incorrectly checking
on the out FILE pointer rather than the hdr. Fix this.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David Howells <dhowells@redhat.com>
This commit is contained in:
Colin Ian King 2016-04-06 14:06:48 +01:00 коммит произвёл David Howells
Родитель 8d4a2ec1e0
Коммит 952cca6a72
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -650,7 +650,7 @@ int main(int argc, char **argv)
}
hdr = fopen(headername, "w");
if (!out) {
if (!hdr) {
perror(headername);
exit(1);
}