fixed crash in getChassisData

crow::Response was create on stack and passed to async function
which was called after crow::Response was deleted

Tested:
  - mentioned issue doesn't produce errors anymore
  - no additional errors detected

Signed-off-by: Krzysztof Grobelny <krzysztof.grobelny@intel.com>
Change-Id: I16b338e0f6a4102415b5dca5defc307495db0c8e
diff --git a/redfish-core/lib/sensors.hpp b/redfish-core/lib/sensors.hpp
index 5140180..b20f7eb 100644
--- a/redfish-core/lib/sensors.hpp
+++ b/redfish-core/lib/sensors.hpp
@@ -3092,16 +3092,17 @@
         mapComplete(boost::beast::http::status::bad_request, {});
         return;
     }
-    crow::Response res;
-    auto respBuffer = std::make_shared<bmcweb::AsyncResp>(res);
+
+    auto res = std::make_shared<crow::Response>();
+    auto asyncResp = std::make_shared<bmcweb::AsyncResp>(*res);
     auto callback =
-        [respBuffer, mapCompleteCb{std::move(mapComplete)}](
+        [res, asyncResp, mapCompleteCb{std::move(mapComplete)}](
             const boost::beast::http::status status,
             const boost::container::flat_map<std::string, std::string>&
                 uriToDbus) { mapCompleteCb(status, uriToDbus); };
 
     auto resp = std::make_shared<SensorsAsyncResp>(
-        respBuffer, chassis, pathIt->second, node, std::move(callback));
+        asyncResp, chassis, pathIt->second, node, std::move(callback));
     getChassisData(resp);
 }