fix a couple of compiler warnings
This commit is contained in:
parent
a0e0c4e45b
commit
6d9308d93c
@ -279,8 +279,12 @@ vips_buf_appendns( VipsBuf *buf, const char *str, int sz )
|
|||||||
|
|
||||||
/* Can't use vips_strncpy() here, we don't want to drop the end of the
|
/* Can't use vips_strncpy() here, we don't want to drop the end of the
|
||||||
* string.
|
* string.
|
||||||
|
*
|
||||||
|
* gcc10 issues a false-positive warning about this.
|
||||||
*/
|
*/
|
||||||
|
#pragma GCC diagnostic push
|
||||||
strncpy( buf->base + buf->i, str, cpy );
|
strncpy( buf->base + buf->i, str, cpy );
|
||||||
|
#pragma GCC diagnostic pop
|
||||||
buf->i += cpy;
|
buf->i += cpy;
|
||||||
|
|
||||||
if( buf->i >= buf->mx - 4 ) {
|
if( buf->i >= buf->mx - 4 ) {
|
||||||
|
@ -613,7 +613,7 @@ vips__set_create_time( int fd )
|
|||||||
SYSTEMTIME st;
|
SYSTEMTIME st;
|
||||||
FILETIME ft;
|
FILETIME ft;
|
||||||
|
|
||||||
if( (handle = _get_osfhandle( fd )) == INVALID_HANDLE_VALUE )
|
if( (handle = (HANDLE) _get_osfhandle( fd )) == INVALID_HANDLE_VALUE )
|
||||||
return;
|
return;
|
||||||
GetSystemTime( &st );
|
GetSystemTime( &st );
|
||||||
SystemTimeToFileTime( &st, &ft );
|
SystemTimeToFileTime( &st, &ft );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user