mirror of
https://git.zx2c4.com/cgit
synced 2024-11-09 10:08:42 +00:00
added a chk_non_negative check
This commit is contained in:
parent
3aae82703b
commit
127f43d4e2
1
cgit.h
1
cgit.h
@ -157,6 +157,7 @@ extern void cgit_querystring_cb(const char *name, const char *value);
|
|||||||
|
|
||||||
extern int chk_zero(int result, char *msg);
|
extern int chk_zero(int result, char *msg);
|
||||||
extern int chk_positive(int result, char *msg);
|
extern int chk_positive(int result, char *msg);
|
||||||
|
extern int chk_non_negative(int result, char *msg);
|
||||||
|
|
||||||
extern int hextoint(char c);
|
extern int hextoint(char c);
|
||||||
extern char *trim_end(const char *str, char c);
|
extern char *trim_end(const char *str, char c);
|
||||||
|
7
shared.c
7
shared.c
@ -86,6 +86,13 @@ int chk_positive(int result, char *msg)
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int chk_non_negative(int result, char *msg)
|
||||||
|
{
|
||||||
|
if (result < 0)
|
||||||
|
die("%s: %s",msg, strerror(errno));
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
struct repoinfo *add_repo(const char *url)
|
struct repoinfo *add_repo(const char *url)
|
||||||
{
|
{
|
||||||
struct repoinfo *ret;
|
struct repoinfo *ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user