13
0

brace style (braces missing)

This commit is contained in:
Paul Davis 2022-01-02 17:19:32 -07:00
parent 66b170075b
commit 41310d9b8a

View File

@ -119,15 +119,18 @@ static void* vstfx_load_vst_library(const char* path)
/*Path not specified - not much more we can do*/
if (envdup == 0)
if (envdup == 0) {
std::cerr << "no search path\n";
return 0;
}
/*Copy the path into envdup*/
envdup = strdup (envdup);
if (envdup == 0)
if (envdup == 0) {
return 0;
}
len2 = strlen(path);