Browse Source

Fix failure in set_primary_interface when parameter is null

The program would fail if the parameter is passed as null in set_primary_interface because
in the print_verbose, the get_namea) method is called on the parameter and this causes a
failure if the parameter that was passed is null.

Same fix was done in 3.x also and it seems to be present in master too.
lucicam 4 years ago
parent
commit
c98ca4e959
1 changed files with 1 additions and 0 deletions
  1. 1 0
      servers/xr_server.cpp

+ 1 - 0
servers/xr_server.cpp

@@ -311,6 +311,7 @@ Ref<XRInterface> XRServer::get_primary_interface() const {
 };
 };
 
 
 void XRServer::set_primary_interface(const Ref<XRInterface> &p_primary_interface) {
 void XRServer::set_primary_interface(const Ref<XRInterface> &p_primary_interface) {
+	ERR_FAIL_COND(p_primary_interface.is_null());
 	primary_interface = p_primary_interface;
 	primary_interface = p_primary_interface;
 
 
 	print_verbose("XR: Primary interface set to: " + primary_interface->get_name());
 	print_verbose("XR: Primary interface set to: " + primary_interface->get_name());