Commit 879ae06a authored by Gabriele Svelto's avatar Gabriele Svelto
Browse files

Bug 1944784 - Fix collecting the errors encountered when generating minidumps r=cmartin, a=dmeehan

parent 0d315ac6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3319,7 +3319,8 @@ static void MaybeAnnotateDumperError(const ClientInfo& aClientInfo,
                                     AnnotationTable& aAnnotations) {
#if defined(MOZ_OXIDIZED_BREAKPAD)
  if (aClientInfo.had_error()) {
    aAnnotations[Annotation::DumperError] = *aClientInfo.error_msg();
    aAnnotations[Annotation::DumperError] =
        nsDependentCString(aClientInfo.error_msg());
  }
#endif
}