Removed usage of the deprecated critical section constructor in modules/utility.
Review URL: http://webrtc-codereview.appspot.com/321006

git-svn-id: http://webrtc.googlecode.com/svn/trunk@1223 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/src/modules/utility/source/process_thread_impl.h b/src/modules/utility/source/process_thread_impl.h
index a712ffc..79b1272 100644
--- a/src/modules/utility/source/process_thread_impl.h
+++ b/src/modules/utility/source/process_thread_impl.h
@@ -38,7 +38,7 @@
 
 private:
     EventWrapper&           _timeEvent;
-    CriticalSectionWrapper& _critSectModules;
+    CriticalSectionWrapper* _critSectModules;
     ListWrapper             _modules;
     ThreadWrapper*          _thread;
 };