Changeset 64766 in vbox for trunk/src/VBox/Additions/WINNT/VBoxTray
- Timestamp:
- Nov 30, 2016 10:59:48 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112111
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxLA.cpp
r63104 r64766 199 199 static void ActionExecutorDeleteActions(RTLISTANCHOR *listActions) 200 200 { 201 ACTIONENTRY *pIter = NULL;202 ACTIONENTRY *pIterNext = NULL;201 ACTIONENTRY *pIter; 202 ACTIONENTRY *pIterNext; 203 203 RTListForEachSafe(listActions, pIter, pIterNext, ACTIONENTRY, nodeActionEntry) 204 204 { … … 322 322 { 323 323 bool fAdded = false; 324 ACTIONENTRY *pIter = NULL;324 ACTIONENTRY *pIter; 325 325 RTListForEach(listActions, pIter, ACTIONENTRY, nodeActionEntry) 326 326 { … … 345 345 346 346 #ifdef LOG_ENABLED 347 ACTIONENTRY *pIter = NULL;347 ACTIONENTRY *pIter; 348 348 RTListForEach(listActions, pIter, ACTIONENTRY, nodeActionEntry) 349 349 { … … 358 358 } 359 359 360 LogFlowFunc(("action enum %d\n", 361 bRet)); 360 LogFlowFunc(("action enum %d\n", bRet)); 362 361 363 362 return bRet; … … 368 367 LogFlowFunc(("ExecuteActions\n")); 369 368 370 ACTIONENTRY *pIter = NULL;369 ACTIONENTRY *pIter; 371 370 RTListForEach(listActions, pIter, ACTIONENTRY, nodeActionEntry) 372 371 {
Note:
See TracChangeset
for help on using the changeset viewer.