]> git.cworth.org Git - apitrace/blobdiff - common/trace_parser.cpp
Correctly copy "out" arguments to the "leave" portion of the trace
[apitrace] / common / trace_parser.cpp
index 88afa98521fc46342081e5b7d4a4f4d375001bf7..dc9634f0d36f823b635d26c7efd7bc1a1082625f 100644 (file)
@@ -480,7 +480,7 @@ void Parser::parse_arg(Call *call, Mode mode) {
         if (index >= call->args.size()) {
             call->args.resize(index + 1);
         }
-        call->args[index] = value;
+        call->args[index].value = value;
     }
 }