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:
Niels Elburg
2006-12-05 20:53:04 +00:00
parent f7692316d4
commit 10dde2409e
14 changed files with 172 additions and 174 deletions

View File

@@ -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 );