mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-21 06:09:13 -04:00
length should be unsigned in omapi_data_dereference
This commit is contained in:
parent
571e433d03
commit
b2728187cc
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: data.c,v 1.14 2000/06/21 22:01:16 tale Exp $ */
|
||||
/* $Id: data.c,v 1.15 2000/06/23 20:04:25 tale Exp $ */
|
||||
|
||||
/* Principal Author: Ted Lemon */
|
||||
|
||||
|
|
@ -117,7 +117,7 @@ omapi_data_reference(omapi_data_t **r, omapi_data_t *h) {
|
|||
|
||||
void
|
||||
omapi_data_dereference(omapi_data_t **h) {
|
||||
int length = 0;
|
||||
unsigned int length = 0;
|
||||
|
||||
|
||||
REQUIRE(h != NULL && *h != NULL);
|
||||
|
|
|
|||
Loading…
Reference in a new issue