[llvm-commits] CVS: llvm/include/llvm/System/Path.h
Reid Spencer
reid at x10sys.com
Thu Jun 8 10:00:21 PDT 2006
Changes in directory llvm/include/llvm/System:
Path.h updated: 1.28 -> 1.29
---
Log message:
For PR804: http://llvm.org/PR804 :
Change the file size field of StatusInfo to be uint64_t instead of size_t
so that we know it is always 64 bits. This prevents some overflow on
systems where size_t is 32 bits when it ought to be 64.
---
Diffs of the changes: (+1 -1)
Path.h | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/include/llvm/System/Path.h
diff -u llvm/include/llvm/System/Path.h:1.28 llvm/include/llvm/System/Path.h:1.29
--- llvm/include/llvm/System/Path.h:1.28 Wed Feb 22 10:23:43 2006
+++ llvm/include/llvm/System/Path.h Thu Jun 8 12:00:08 2006
@@ -67,7 +67,7 @@
struct StatusInfo {
StatusInfo() : fileSize(0), modTime(0,0), mode(0777), user(999),
group(999), isDir(false) { }
- size_t fileSize; ///< Size of the file in bytes
+ uint64_t fileSize; ///< Size of the file in bytes
TimeValue modTime; ///< Time of file's modification
uint32_t mode; ///< Mode of the file, if applicable
uint32_t user; ///< User ID of owner, if applicable
More information about the llvm-commits
mailing list