Changeset 90802 in vbox for trunk/src/VBox/Storage/testcase/VDScriptInterp.cpp
- Timestamp:
- Aug 23, 2021 7:08:27 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146437
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/testcase/VDScriptInterp.cpp
r82968 r90802 638 638 pCtrl = (PVDSCRIPTINTERPCTRL)vdScriptStackGetUsed(&pThis->StackCtrl); 639 639 } 640 AssertMsg( VALID_PTR(pCtrl), ("Incorrect program, return outside of function\n"));640 AssertMsg(RT_VALID_PTR(pCtrl), ("Incorrect program, return outside of function\n")); 641 641 break; 642 642 } … … 662 662 pCtrl = (PVDSCRIPTINTERPCTRL)vdScriptStackGetUsed(&pThis->StackCtrl); 663 663 } 664 AssertMsg( VALID_PTR(pCtrl), ("Incorrect program, continue outside of loop\n"));664 AssertMsg(RT_VALID_PTR(pCtrl), ("Incorrect program, continue outside of loop\n")); 665 665 666 666 /* Put the conditionals for while and for loops onto the control stack again. */ … … 693 693 pCtrl = (PVDSCRIPTINTERPCTRL)vdScriptStackGetUsed(&pThis->StackCtrl); 694 694 } 695 AssertMsg( VALID_PTR(pCtrl), ("Incorrect program, break outside of loop\n"));695 AssertMsg(RT_VALID_PTR(pCtrl), ("Incorrect program, break outside of loop\n")); 696 696 vdScriptStackPop(&pThis->StackCtrl); /* Remove loop control statement. */ 697 697 break;
Note:
See TracChangeset
for help on using the changeset viewer.