Fix initialization of variables; eliminates warnings on Linux.



git-svn-id: http://skia.googlecode.com/svn/trunk@1990 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/PathTest.cpp b/tests/PathTest.cpp
index 3086159..e7b061b 100644
--- a/tests/PathTest.cpp
+++ b/tests/PathTest.cpp
@@ -18,6 +18,7 @@
         SkPath::Verb v;
         int nMT = 0;
         int nCL = 0;
+        mv.set(0, 0);
         while (SkPath::kDone_Verb != (v = iter.next(pts))) {
             switch (v) {
                 case SkPath::kMove_Verb: