1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

libcli/nbt Cope with blank lines in DNS hosts file

This commit is contained in:
Andrew Bartlett 2011-04-06 12:09:41 +10:00
parent 82e0ba22ce
commit 457c665be2

View File

@ -85,15 +85,15 @@ static bool getdns_hosts_fileent(TALLOC_CTX *ctx, XFILE *fp, char **pp_name, cha
++count;
if (next_token_talloc(ctx, &ptr, &name, NULL))
++count;
if (strcasecmp(name_type, "A") == 0) {
if (name_type && strcasecmp(name_type, "A") == 0) {
if (next_token_talloc(ctx, &ptr, &ip, NULL))
++count;
} else if (strcasecmp(name_type, "SRV") == 0) {
} else if (name_type && strcasecmp(name_type, "SRV") == 0) {
if (next_token_talloc(ctx, &ptr, &next_name, NULL))
++count;
if (next_token_talloc(ctx, &ptr, &port, NULL))
++count;
} else if (strcasecmp(name_type, "CNAME") == 0) {
} else if (name_type && strcasecmp(name_type, "CNAME") == 0) {
if (next_token_talloc(ctx, &ptr, &next_name, NULL))
++count;
}