mirror of
https://github.com/game-stop/veejay.git
synced 2026-01-05 22:45:30 +01:00
more bugfixes, new vims 389, fx cut, fx copy, fx paste work in gveejayreloaded cross samples, fixed segfault in chromamagick, fixed uv length in dummy, disabled disconnect and quicklaunch button in gveejayreloaded (useless)
git-svn-id: svn://code.dyne.org/veejay/trunk@694 eb8d1916-c9e9-0310-b8de-cf0c9472ead5
This commit is contained in:
@@ -499,7 +499,7 @@ static void add_to_plugin_list( const char *path )
|
||||
return;
|
||||
|
||||
int i;
|
||||
char fullname[PATH_MAX+1];
|
||||
char fullname[PATH_MAX];
|
||||
struct dirent **files = NULL;
|
||||
struct stat sbuf;
|
||||
int res = 0;
|
||||
@@ -525,7 +525,6 @@ static void add_to_plugin_list( const char *path )
|
||||
return;
|
||||
}
|
||||
int n_files = scandir( path, &files, select_f, alphasort );
|
||||
veejay_msg(VEEJAY_MSG_DEBUG, "%d: '%s' ",n_files, path );
|
||||
if( n_files <= 0 )
|
||||
{
|
||||
veejay_msg(VEEJAY_MSG_ERROR, "No FF plugins found in %s", path );
|
||||
@@ -541,7 +540,7 @@ veejay_msg(VEEJAY_MSG_DEBUG, "%d: '%s' ",n_files, path );
|
||||
veejay_msg(VEEJAY_MSG_ERROR, "'%s' marked as bad", name);
|
||||
continue;
|
||||
}
|
||||
bzero(fullname , PATH_MAX+1);
|
||||
bzero(fullname , PATH_MAX);
|
||||
sprintf(fullname, "%s/%s", path,name );
|
||||
|
||||
void *handle = dlopen(fullname, RTLD_NOW );
|
||||
|
||||
Reference in New Issue
Block a user