WebDAV-Daemon icon indicating copy to clipboard operation
WebDAV-Daemon copied to clipboard

Fix hangs reading xml

Open xyzzy42 opened this issue 4 years ago • 1 comments

webdavd will hang in an infinite loop on startup for various simple mistakes in the xml.

Anything malformed, like missing a closing tag for an element.

<server> <listen> <listen-without-slash> </server>
<server> <listen> /listen> </server>

Any unknown element in a listen: <listen> <typo> 1234 </typo> </listen>

Unknown elements in a server were handled.

xyzzy42 avatar Jun 10 '21 21:06 xyzzy42

Great Find! Thanks.

couling avatar Jun 10 '21 22:06 couling