We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version: avahi-daemon 0.7 on Raspbian Buster
Service XML causing the segfault:
<?xml version="1.0" standalone='no'?><!--*-nxml-*--> <!DOCTYPE service-group SYSTEM "avahi-service.dtd"> <service-group> <name replace-wildcards="yes">Printer</name> <service protocol="ipv4"> <type>_ipp._tcp.</type> <host-name>printer.local</host-name> <port>631</port> <txt-record>note=</txt-record> </service> </service-group>
The line <txt-record>note=</txt-record> causes avahi to segfault. That did not happen on previous version of Raspbian.
<txt-record>note=</txt-record>
The Workaround I found was: <txt-record>note=""</txt-record> I.e. setting the note to an empty string.
<txt-record>note=""</txt-record>
note
The text was updated successfully, but these errors were encountered:
Merge pull request #226 from kinvolk/krnowak/empty-value-crash-fix
4a6d6cc
Fix a crash when txt records have an empty value (Closes: #257, #255, #247, #226)
Merged
Sorry, something went wrong.
No branches or pull requests
Version: avahi-daemon 0.7 on Raspbian Buster
Service XML causing the segfault:
The line
<txt-record>note=</txt-record>causes avahi to segfault. That did not happen on previous version of Raspbian.The Workaround I found was:
<txt-record>note=""</txt-record>I.e. setting thenoteto an empty string.The text was updated successfully, but these errors were encountered: