[tbb-commits] [tor-browser] 03/81: Bug 1784588 - Fix SplitDriverVersion when the string has less than 4 numbers. r=aosmond

gitolite role git at cupani.torproject.org
Tue Oct 18 16:11:57 UTC 2022


This is an automated email from the git hooks/post-receive script.

pierov pushed a commit to branch tor-browser-102.4.0esr-12.0-1
in repository tor-browser.

commit 2aa947b82c778e8ba196f405e6be4ac8ebc57b39
Author: Jamie Nicol <jnicol at mozilla.com>
AuthorDate: Thu Aug 18 12:57:47 2022 +0000

    Bug 1784588 - Fix SplitDriverVersion when the string has less than 4 numbers. r=aosmond
    
    Differential Revision: https://phabricator.services.mozilla.com/D154897
---
 widget/GfxDriverInfo.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/widget/GfxDriverInfo.h b/widget/GfxDriverInfo.h
index e16ca1e019fa..c1a3789dc024 100644
--- a/widget/GfxDriverInfo.h
+++ b/widget/GfxDriverInfo.h
@@ -460,6 +460,9 @@ inline bool SplitDriverVersion(const char* aSource, char* aAStr, char* aBStr,
   // Add last terminator.
   MOZ_ASSERT(destIdx < 4 && destPos <= 4);
   dest[destIdx][destPos] = 0;
+  for (int unusedDestIdx = destIdx + 1; unusedDestIdx < 4; unusedDestIdx++) {
+    dest[unusedDestIdx][0] = 0;
+  }
 
   if (destIdx != 3) {
     return false;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the tbb-commits mailing list