Changeset 34959 in vbox for trunk/src/VBox/Frontends/VBoxHeadless
- Timestamp:
- Dec 10, 2010 3:17:31 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 68779
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxHeadless/VBoxHeadless.cpp
r34839 r34959 831 831 if (fFFMPEG) 832 832 { 833 int rrc = VINF_SUCCESS, rcc = S_OK; 833 HRESULT rcc = S_OK; 834 int rrc = VINF_SUCCESS; 835 char szErr[8192]; 834 836 835 837 Log2(("VBoxHeadless: loading VBoxFFmpegFB shared library\n")); 836 rrc = SUPR3HardenedLdrLoadAppPriv("VBoxFFmpegFB", &hLdrFFmpegFB );838 rrc = SUPR3HardenedLdrLoadAppPriv("VBoxFFmpegFB", &hLdrFFmpegFB, szErr, sizeof(szErr)); 837 839 838 840 if (RT_SUCCESS(rrc)) … … 845 847 } 846 848 else 847 LogError("Failed to load the video capture extension\n", rrc); 849 LogError("Failed to load the video capture extension\n", rrc); /** @todo stupid function, no formatting options. */ 848 850 if (RT_SUCCESS(rrc)) 849 851 {
Note:
See TracChangeset
for help on using the changeset viewer.