diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-01 18:04:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-01 18:04:03 +0000 |
commit | 6f2ffdb73f9553b3021863bf60ee26bb8c099eb7 (patch) | |
tree | a80cea5404f45341b799001f8ecd061867fdf9e2 /llvm/lib/VMCore/Core.cpp | |
parent | 5db870c90409eebff58ce199ea625d880eb10b20 (diff) | |
download | bcm5719-llvm-6f2ffdb73f9553b3021863bf60ee26bb8c099eb7.tar.gz bcm5719-llvm-6f2ffdb73f9553b3021863bf60ee26bb8c099eb7.zip |
Change the MemoryBuffer::getFile* methods to take just a pointer to the
start of a filename, not a filename+length. All clients can produce a
null terminated name, and the system api's require null terminated
strings anyway.
llvm-svn: 49041
Diffstat (limited to 'llvm/lib/VMCore/Core.cpp')
-rw-r--r-- | llvm/lib/VMCore/Core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Core.cpp b/llvm/lib/VMCore/Core.cpp index 59b9b1ab69a..c35c85dcc0f 100644 --- a/llvm/lib/VMCore/Core.cpp +++ b/llvm/lib/VMCore/Core.cpp @@ -1307,7 +1307,7 @@ int LLVMCreateMemoryBufferWithContentsOfFile(const char *Path, LLVMMemoryBufferRef *OutMemBuf, char **OutMessage) { std::string Error; - if (MemoryBuffer *MB = MemoryBuffer::getFile(Path, strlen(Path), &Error)) { + if (MemoryBuffer *MB = MemoryBuffer::getFile(Path, &Error)) { *OutMemBuf = wrap(MB); return 0; } |