1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-16 22:50:10 +03:00

Feature #4317: Init resp_obj to fix missing object name in NO_EXISTS errors

This commit is contained in:
Carlos Martín 2016-02-08 12:32:27 +01:00
parent 313eb34a7b
commit 91ee796cb6

View File

@ -55,7 +55,10 @@ public:
int resp_id; /**< Id of the object */
string resp_msg; /**< Additional response message */
RequestAttributes(){};
RequestAttributes()
{
resp_obj = PoolObjectSQL::NONE;
};
RequestAttributes(const RequestAttributes& ra)
{