Commit a2b346e3 authored by Scott Vokes's avatar Scott Vokes
Browse files

Fix possible double free by setting correct field to NULL.

parent 57b440f4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ KineticStatus KineticOperation_SendRequest(KineticOperation* const operation)
                request->message.message.commandBytes.data = NULL;
            }
            free(request);
            request = NULL;
            operation->request = NULL;
        }
    }