Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Side by Side Diff: webkit.patch

Issue 6368094: -Wuninitialized fixes Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ipc/ipc_message_utils.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 diff --git a/Source/WebCore/fileapi/Blob.cpp b/Source/WebCore/fileapi/Blob.cpp
2 index 90df3c4..44f3946 100644
3 --- a/Source/WebCore/fileapi/Blob.cpp
4 +++ b/Source/WebCore/fileapi/Blob.cpp
5 @@ -68,7 +68,7 @@ PassRefPtr<Blob> Blob::slice(long long start, long long length , const String& co
6 // When we slice a file for the first time, we obtain a snapshot of the fil e by capturing its current size and modification time.
7 // The modification time will be used to verify if the file has been change d or not, when the underlying data are accessed.
8 long long size;
9 - double modificationTime;
10 + double modificationTime = 0; // clang prXXXX
11 if (isFile())
12 // FIXME: This involves synchronous file operation. We need to figure o ut how to make it asynchronous.
13 static_cast<const File*>(this)->captureSnapshot(size, modificationTime) ;
OLDNEW
« no previous file with comments | « ipc/ipc_message_utils.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698