Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
r12812 committed - Fix memory leak in RegExpStack....
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  1 message - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
codesite-nore...@google.com  
View profile  
 More options Oct 25 2012, 7:10 am
From: codesite-nore...@google.com
Date: Thu, 25 Oct 2012 11:10:22 +0000
Local: Thurs, Oct 25 2012 7:10 am
Subject: [v8] r12812 committed - Fix memory leak in RegExpStack....
Revision: 12812
Author:   u...@chromium.org
Date:     Thu Oct 25 04:10:13 2012
Log:      Fix memory leak in RegExpStack.

R=yang...@chromium.org

Review URL: https://chromiumcodereview.appspot.com/11275037
http://code.google.com/p/v8/source/detail?r=12812

Modified:
  /branches/bleeding_edge/src/regexp-stack.cc

=======================================
--- /branches/bleeding_edge/src/regexp-stack.cc Fri Mar 18 13:35:07 2011
+++ /branches/bleeding_edge/src/regexp-stack.cc Thu Oct 25 04:10:13 2012
@@ -72,7 +72,7 @@

  void RegExpStack::Reset() {
-  if (thread_local_.memory_size_ > kMinimumStackSize) {
+  if (thread_local_.memory_size_ >= kMinimumStackSize) {
      DeleteArray(thread_local_.memory_);
      thread_local_ = ThreadLocal();
    }


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »