GNOME Bugzilla – Bug 588777
[souphttpsrc] don't try to authenticate if no username/password is set
Last modified: 2009-07-16 15:15:01 UTC
When souphttpsrc receives the "authenticate" signal from soup, it tries to authenticate the connection with the username and password that are set as properties on the element. However, if username or password are NULL, this triggers a libsoup-CRITICAL **: soup_auth_authenticate: assertion `username != NULL' failed The attached patch doesn't try to authenticate if username or password is NULL.
Created attachment 138531 [details] [review] souphttpsrc: don't try to authenticate if no username/password is set
Thanks, committed :) commit 07c454d61ec014334812517e24aa694552dbe03d Author: Arnout Vandecappelle <arnout@mind.be> Date: Thu Jul 16 15:14:43 2009 +0200 souphttpsrc: don't try to authenticate if no username/password is set.