mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
Fix remote_internal.c error handling of qparam_get_query
* src/remote_internal.c: Fixed reversed check of error handling
of qparam_get_query call (Dan Berrange).
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
Mon Dec 17 17:38:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
|
||||
|
||||
Fix remote_internal.c error handling of qparam_get_query
|
||||
* src/remote_internal.c: Fixed reversed check of error handling
|
||||
of qparam_get_query call (Dan Berrange).
|
||||
|
||||
Mon Dec 17 10:05:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
|
||||
|
||||
Add separate qparams module for handling query parameters.
|
||||
|
||||
@@ -455,7 +455,7 @@ doRemoteOpen (virConnectPtr conn,
|
||||
#else
|
||||
uri->query =
|
||||
#endif
|
||||
qparam_get_query (vars)) != 0) goto failed;
|
||||
qparam_get_query (vars)) == NULL) goto failed;
|
||||
|
||||
free_qparam_set (vars);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user