db: fix previous commit

cute-signatures
Timo Teras 2009-08-11 16:01:29 +03:00
parent 6dd59d7817
commit 1011c4e346
1 changed files with 2 additions and 2 deletions

View File

@ -1280,8 +1280,8 @@ int apk_db_add_repository(apk_database_t _db, apk_blob_t repository)
struct apk_repository *repo;
int r, targz = 1;
if (repository.ptr == NULL || *repository.ptr == '\0'
|| *repository.ptr == '\n' || *repository.ptr == '#')
if (repository.ptr == NULL || repository.len == 0 ||
*repository.ptr == '#')
return 0;
if (db->num_repos >= APK_MAX_REPOS)