mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 06:25:31 +00:00
3681. [port] Update the Windows build system to support feature
selection and WIN64 builds. This is a work in progress. [RT #34160]
This commit is contained in:
@@ -913,7 +913,7 @@ dns_rdataslab_subtract(unsigned char *mslab, unsigned char *sslab,
|
||||
* This rdata isn't in the sslab, and thus isn't
|
||||
* being subtracted.
|
||||
*/
|
||||
tlength += mcurrent - mrdatabegin;
|
||||
tlength += (unsigned int)(mcurrent - mrdatabegin);
|
||||
tcount++;
|
||||
} else
|
||||
rcount++;
|
||||
@@ -1000,7 +1000,8 @@ dns_rdataslab_subtract(unsigned char *mslab, unsigned char *sslab,
|
||||
* This rdata isn't in the sslab, and thus should be
|
||||
* copied to the tslab.
|
||||
*/
|
||||
unsigned int length = mcurrent - mrdatabegin;
|
||||
unsigned int length;
|
||||
length = (unsigned int)(mcurrent - mrdatabegin);
|
||||
#if DNS_RDATASET_FIXED
|
||||
offsettable[order] = tcurrent - offsetbase;
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user