- Timestamp:
- May 18, 2020 1:34:32 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138005
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/VDPlugin.cpp
r82968 r84328 477 477 DECLHIDDEN(int) vdFindImageBackend(const char *pszBackend, PCVDIMAGEBACKEND *ppBackend) 478 478 { 479 int rc = V INF_SUCCESS;479 int rc = VERR_NOT_FOUND; 480 480 PCVDIMAGEBACKEND pBackend = NULL; 481 481 … … 488 488 { 489 489 pBackend = g_apBackends[i]; 490 rc = VINF_SUCCESS; 490 491 break; 491 492 } … … 532 533 DECLHIDDEN(int) vdFindCacheBackend(const char *pszBackend, PCVDCACHEBACKEND *ppBackend) 533 534 { 534 int rc = V INF_SUCCESS;535 int rc = VERR_NOT_FOUND; 535 536 PCVDCACHEBACKEND pBackend = NULL; 536 537 … … 543 544 { 544 545 pBackend = g_apCacheBackends[i]; 546 rc = VINF_SUCCESS; 545 547 break; 546 548 } … … 588 590 DECLHIDDEN(int) vdFindFilterBackend(const char *pszFilter, PCVDFILTERBACKEND *ppBackend) 589 591 { 590 int rc = V INF_SUCCESS;592 int rc = VERR_NOT_FOUND; 591 593 PCVDFILTERBACKEND pBackend = NULL; 592 594 … … 596 598 { 597 599 pBackend = g_apFilterBackends[i]; 600 rc = VINF_SUCCESS; 598 601 break; 599 602 }
Note:
See TracChangeset
for help on using the changeset viewer.