Changeset 88023 in vbox for trunk/src/VBox/Main
- Timestamp:
- Mar 8, 2021 6:01:15 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143151
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DrvAudioRec.cpp
r88022 r88023 940 940 if (RT_SUCCESS(rc)) 941 941 { 942 pStreamAV->pCfg = DrvAudioHlpStreamCfgDup(pCfgAcq);942 pStreamAV->pCfg = PDMAudioStrmCfgDup(pCfgAcq); 943 943 if (!pStreamAV->pCfg) 944 944 rc = VERR_NO_MEMORY; … … 970 970 if (RT_SUCCESS(rc)) 971 971 { 972 DrvAudioHlpStreamCfgFree(pStreamAV->pCfg);972 PDMAudioStrmCfgFree(pStreamAV->pCfg); 973 973 pStreamAV->pCfg = NULL; 974 974 } -
trunk/src/VBox/Main/src-client/DrvAudioVRDE.cpp
r88022 r88023 437 437 if (RT_SUCCESS(rc)) 438 438 { 439 pStreamVRDE->pCfg = DrvAudioHlpStreamCfgDup(pCfgAcq);439 pStreamVRDE->pCfg = PDMAudioStrmCfgDup(pCfgAcq); 440 440 if (!pStreamVRDE->pCfg) 441 441 rc = VERR_NO_MEMORY; … … 468 468 if (RT_SUCCESS(rc)) 469 469 { 470 DrvAudioHlpStreamCfgFree(pStreamVRDE->pCfg);470 PDMAudioStrmCfgFree(pStreamVRDE->pCfg); 471 471 pStreamVRDE->pCfg = NULL; 472 472 }
Note:
See TracChangeset
for help on using the changeset viewer.