dns.mitm: fix hosts file parsing bug

This commit is contained in:
Michael Scire 2021-02-02 16:51:13 -08:00
parent bcda834980
commit 8eb65ab401

View file

@ -125,6 +125,8 @@ namespace ams::mitm::socket::resolver {
current_address = 0;
work = static_cast<u32>(c - '0');
state = State::Ip1;
} else if (c == '\n') {
state = State::BeginLine;
} else {
state = State::IgnoredLine;
}