Summary: | Konqueror crashes upon loading http://www.die.net/doc/linux/man/man5/vsftpd.conf.5.html | ||
---|---|---|---|
Product: | [Applications] konqueror | Reporter: | Frederik Dannemare <frederik> |
Component: | general | Assignee: | Konqueror Developers <konq-bugs> |
Status: | RESOLVED DUPLICATE | ||
Severity: | crash | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Debian testing | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Frederik Dannemare
2004-06-02 23:12:08 UTC
I have narrowed it down to this: This will crash Konqueror (test here: http://sentinel.dk/vsftpd.conf.5-WORKS.html): ############################################################### <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>vsftpd.conf(5) - Linux man page</title> </head> <body bgcolor="#ffffff" text="#333333" link="#660000" vlink="#660000" alink="#000000"> <dl compact> <dt><b>listen</b> <dd>If enabled, vsftpd will run in standalone mode. This means that vsftpd must not be run from an inetd of some kind. Instead, the vsftpd executable is run once directly. vsftpd itself will then take care of listening for and handling incoming connections. <p>Default: NO </dl> </body> </html> ############################################################### This, on the other hand, does not crash Konqueror (test here: http://sentinel.dk/vsftpd.conf.5-CRASHES.html): ############################################################### <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>vsftpd.conf(5) - Linux man page</title> </head> <body bgcolor="#ffffff" text="#333333" link="#660000" vlink="#660000" alink="#000000"> <dl compact> <dt><b>foobar</b> <dd>If enabled, vsftpd will run in standalone mode. This means that vsftpd must not be run from an inetd of some kind. Instead, the vsftpd executable is run once directly. vsftpd itself will then take care of listening for and handling incoming connections. <p>Default: NO </dl> </body> </html> ############################################################### If you look closely, you'll notice the small difference which is: diff vsftpd.conf.5-CRASHES.html vsftpd.conf.5-WORKS.html 10c10 < <dt><b>listen</b> --- > <dt><b>foobar</b> I don't know much about HTML, but Konqi obviously doesn't like 'listen' in this context. Argh, I switched the two test links (WORKS vs CRASHES) in the above text. Well, I'm sure you are able to figure it out. :) |