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

Side by Side Diff: source/libvpx/third_party/nestegg/0002-ne_read_simple-uninitialized_variable.diff

Issue 341293003: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 6 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
OLDNEW
(Empty)
1 diff --git a/nestegg/src/nestegg.c b/nestegg/src/nestegg.c
2 index 4fb10e7..b6bc460 100644
3 --- a/nestegg/src/nestegg.c
4 +++ b/nestegg/src/nestegg.c
5 @@ -934,7 +934,7 @@ static int
6 ne_read_simple(nestegg * ctx, struct ebml_element_desc * desc, size_t length)
7 {
8 struct ebml_type * storage;
9 - int r;
10 + int r = 0;
11
12 storage = (struct ebml_type *) (ctx->ancestor->data + desc->offset);
13
14 @@ -968,7 +968,6 @@ ne_read_simple(nestegg * ctx, struct ebml_element_desc * des c, size_t length)
15 case TYPE_MASTER:
16 case TYPE_UNKNOWN:
17 assert(0);
18 - r = 0;
19 break;
20 }
21
OLDNEW
« no previous file with comments | « source/libvpx/third_party/nestegg/0001-include-paths.diff ('k') | source/libvpx/third_party/nestegg/AUTHORS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698