added null terminator

This commit is contained in:
Ishan Jain 2023-12-10 01:08:30 +05:30
parent fc8ff4fc24
commit b9ff2077b6
Signed by: ishan
GPG Key ID: 0506DB2A1CC75C27

View File

@ -95,6 +95,8 @@ impl Qname {
buf.push(*i);
buf.extend(v.bytes());
}
buf.push(0);
}
}