mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-26 14:16:12 +00:00
Fix memory leak in StringRef::edit_distance(). 'Allocated' could be leaked on an early return.
llvm-svn: 118370
This commit is contained in:
parent
d48eca9b43
commit
3bb32def7e
@ -9,6 +9,7 @@
|
||||
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/ADT/APInt.h"
|
||||
#include "llvm/ADT/OwningPtr.h"
|
||||
#include <bitset>
|
||||
|
||||
using namespace llvm;
|
||||
@ -84,10 +85,12 @@ unsigned StringRef::edit_distance(llvm::StringRef Other,
|
||||
|
||||
const unsigned SmallBufferSize = 64;
|
||||
unsigned SmallBuffer[SmallBufferSize];
|
||||
unsigned *Allocated = 0;
|
||||
llvm::OwningArrayPtr<unsigned> Allocated;
|
||||
unsigned *previous = SmallBuffer;
|
||||
if (2*(n + 1) > SmallBufferSize)
|
||||
Allocated = previous = new unsigned [2*(n+1)];
|
||||
if (2*(n + 1) > SmallBufferSize) {
|
||||
previous = new unsigned [2*(n+1)];
|
||||
Allocated.reset(previous);
|
||||
}
|
||||
unsigned *current = previous + (n + 1);
|
||||
|
||||
for (unsigned i = 0; i <= n; ++i)
|
||||
@ -118,8 +121,6 @@ unsigned StringRef::edit_distance(llvm::StringRef Other,
|
||||
}
|
||||
|
||||
unsigned Result = previous[n];
|
||||
delete [] Allocated;
|
||||
|
||||
return Result;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user