Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: installer/src/installer-lib/property.cpp

Issue 29329510: Issue #1186 - Style conformity for names in installer tests (Closed)
Patch Set: Created Nov. 14, 2015, 5:55 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « installer/src/installer-lib/process.h ('k') | installer/src/installer-lib/test/custom-action-fail.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: installer/src/installer-lib/property.cpp
===================================================================
--- a/installer/src/installer-lib/property.cpp
+++ b/installer/src/installer-lib/property.cpp
@@ -28,7 +28,7 @@
* We use only a modest fixed-size buffer for the first step, because we handle arbitrary-length property values in a second step.
*/
// This buffer allocates on the stack, so we don't want it too large; 64 characters is enough for most properties anyway.
- WCHAR buffer1[64] = { L'\0' };
+ WCHAR buffer1[64] = {L'\0'};
DWORD length = sizeof(buffer1) / sizeof(WCHAR);
UINT x = MsiGetPropertyW(handle, name.c_str(), buffer1, & length);
switch (x)
« no previous file with comments | « installer/src/installer-lib/process.h ('k') | installer/src/installer-lib/test/custom-action-fail.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld