projects
/
yaz-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
54cc1be
)
Function oid_dotstring_to_oid returns -1 if OID dot-string is ill-formed
author
Adam Dickmeiss
<adam@indexdata.dk>
Fri, 13 Apr 2007 07:04:42 +0000
(07:04 +0000)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Fri, 13 Apr 2007 07:04:42 +0000
(07:04 +0000)
src/oid_util.c
patch
|
blob
|
history
diff --git
a/src/oid_util.c
b/src/oid_util.c
index
7523158
..
93d724b
100644
(file)
--- a/
src/oid_util.c
+++ b/
src/oid_util.c
@@
-2,7
+2,7
@@
* Copyright (C) 1995-2007, Index Data ApS
* See the file LICENSE for details.
*
- * $Id: oid_util.c,v 1.2 2007-04-12 20:47:28 adam Exp $
+ * $Id: oid_util.c,v 1.3 2007-04-13 07:04:42 adam Exp $
*/
/**
@@
-90,6
+90,8
@@
int oid_dotstring_to_oid(const char *name, int *oid)
name++;
}
}
+ if (i == 0)
+ return -1;
oid[i] = val;
oid[i+1] = -1;
return 0;