version: fix comparison against empty version

cute-signatures
Timo Teras 2009-08-17 14:24:13 +03:00
parent 7695ed82be
commit 0b9bfa8d52
1 changed files with 14 additions and 9 deletions

View File

@ -75,6 +75,11 @@ static int get_token(int *type, apk_blob_t *blob)
static const char *pre_suffixes[] = { "alpha", "beta", "pre", "rc" };
int v = 0, i = 0, nt = TOKEN_INVALID;
if (blob->len <= 0) {
*type = TOKEN_END;
return 0;
}
switch (*type) {
case TOKEN_DIGIT_OR_ZERO:
/* Leading zero digits get a special treatment */
@ -201,13 +206,13 @@ int apk_version_compare_blob(apk_blob_t a, apk_blob_t b)
return APK_VERSION_LESS;
if (av > bv)
return APK_VERSION_GREATER;
if (at < bt)
return get_token(&at, &a) < 0 ?
APK_VERSION_LESS : APK_VERSION_GREATER;
if (bt < at)
return get_token(&bt, &b) > 0 ?
APK_VERSION_LESS : APK_VERSION_GREATER;
return APK_VERSION_EQUAL;
/* at and bt are the next expected token type */
if (at == bt)
return APK_VERSION_EQUAL;
if (at < bt || bt == TOKEN_INVALID)
return APK_VERSION_GREATER;
return APK_VERSION_LESS;
}
int apk_version_compare(const char *str1, const char *str2)