mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
Cleaned up remaining warnings in high-level library.
This commit is contained in:
parent
9475ee5d59
commit
a67c238fee
@ -1407,13 +1407,18 @@ find_dataset(hid_t loc_id, const char *name, const H5L_info2_t *linfo, void *op_
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
/* H5Literate wants a non-const pointer but we have a const pointer in the API
|
||||
* call. It's safe to ignore this because we control the callback, don't
|
||||
* modify the op_data buffer (i.e.: dset_name) during the traversal, and the
|
||||
* library never modifies that buffer.
|
||||
*/
|
||||
H5_GCC_DIAG_OFF(cast-qual)
|
||||
herr_t
|
||||
H5LTfind_dataset( hid_t loc_id, const char *dset_name )
|
||||
{
|
||||
return H5Literate2(loc_id, H5_INDEX_NAME, H5_ITER_INC, 0, find_dataset, (void *)dset_name);
|
||||
}
|
||||
|
||||
H5_GCC_DIAG_ON(cast-qual)
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
@ -2033,13 +2038,18 @@ herr_t H5LTfind_attribute( hid_t loc_id, const char* attr_name )
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
/* H5Aiterate wants a non-const pointer but we have a const pointer in the API
|
||||
* call. It's safe to ignore this because we control the callback, don't
|
||||
* modify the op_data buffer (i.e.: attr_name) during the traversal, and the
|
||||
* library never modifies that buffer.
|
||||
*/
|
||||
H5_GCC_DIAG_OFF(cast-qual)
|
||||
herr_t
|
||||
H5LT_find_attribute( hid_t loc_id, const char* attr_name )
|
||||
{
|
||||
return H5Aiterate2(loc_id, H5_INDEX_NAME, H5_ITER_INC, NULL, find_attr, (void *)attr_name);
|
||||
}
|
||||
|
||||
H5_GCC_DIAG_ON(cast-qual)
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
|
1045
hl/src/H5LTanalyze.c
1045
hl/src/H5LTanalyze.c
File diff suppressed because it is too large
Load Diff
@ -26,7 +26,6 @@
|
||||
/* Turn off suggest const & malloc attribute warnings in gcc */
|
||||
#if defined __GNUC__ && 402 <= __GNUC__ * 100 + __GNUC_MINOR__
|
||||
#pragma GCC diagnostic ignored "-Wsuggest-attribute=const"
|
||||
#pragma GCC diagnostic ignored "-Wsuggest-attribute=malloc"
|
||||
#endif
|
||||
|
||||
int my_yyinput(char *, int);
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,9 +1,8 @@
|
||||
/* A Bison parser, made by GNU Bison 3.4.1. */
|
||||
/* A Bison parser, made by GNU Bison 3.0.4. */
|
||||
|
||||
/* Bison interface for Yacc-like parsers in C
|
||||
|
||||
Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2019 Free Software Foundation,
|
||||
Inc.
|
||||
Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
@ -31,9 +30,6 @@
|
||||
This special exception was added by the Free Software Foundation in
|
||||
version 2.2 of Bison. */
|
||||
|
||||
/* Undocumented macros, especially those whose name start with YY_,
|
||||
are private implementation details. Do not rely on them. */
|
||||
|
||||
#ifndef YY_H5LTYY_HL_SRC_H5LTPARSE_H_INCLUDED
|
||||
# define YY_H5LTYY_HL_SRC_H5LTPARSE_H_INCLUDED
|
||||
/* Debug traces. */
|
||||
@ -110,17 +106,18 @@ extern int H5LTyydebug;
|
||||
|
||||
/* Value type. */
|
||||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
||||
|
||||
union YYSTYPE
|
||||
{
|
||||
#line 72 "hl/src/H5LTparse.y"
|
||||
#line 72 "hl/src/H5LTparse.y" /* yacc.c:1909 */
|
||||
|
||||
int ival; /*for integer token*/
|
||||
char *sval; /*for name string*/
|
||||
hid_t hid; /*for hid_t token*/
|
||||
|
||||
#line 122 "hl/src/H5LTparse.h"
|
||||
|
||||
#line 119 "hl/src/H5LTparse.h" /* yacc.c:1909 */
|
||||
};
|
||||
|
||||
typedef union YYSTYPE YYSTYPE;
|
||||
# define YYSTYPE_IS_TRIVIAL 1
|
||||
# define YYSTYPE_IS_DECLARED 1
|
||||
|
@ -57,12 +57,12 @@ GIFBYTE *Raster; /* The raster data stream, unblocked *
|
||||
|
||||
/* The hash table used by the decompressor */
|
||||
|
||||
int Prefix[4096];
|
||||
int Suffix[4096];
|
||||
int *Prefix;
|
||||
int *Suffix;
|
||||
|
||||
/* An output array used by the decompressor */
|
||||
|
||||
int OutCode[1025];
|
||||
int *OutCode;
|
||||
|
||||
/* The color map, read from the GIF header */
|
||||
|
||||
@ -159,6 +159,19 @@ Decompress(GIFIMAGEDESC *GifImageDesc, GIFHEAD *GifHead)
|
||||
{
|
||||
int i;
|
||||
|
||||
if (!(Prefix = calloc(4096, sizeof(int)))) {
|
||||
printf("Out of memory");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
if (!(Suffix = calloc(4096, sizeof(int)))) {
|
||||
printf("Out of memory");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
if (!(OutCode = calloc(1024, sizeof(int)))) {
|
||||
printf("Out of memory");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
XC = 0;
|
||||
YC = 0;
|
||||
Pass = 0;
|
||||
@ -309,5 +322,9 @@ Decompress(GIFIMAGEDESC *GifImageDesc, GIFHEAD *GifHead)
|
||||
Code = ReadCode();
|
||||
}
|
||||
|
||||
free(Prefix);
|
||||
free(Suffix);
|
||||
free(OutCode);
|
||||
|
||||
return Image;
|
||||
}
|
||||
|
@ -69,45 +69,6 @@ static void char_init(), char_out(), flush_char();
|
||||
|
||||
static byte pc2nc[256];
|
||||
|
||||
/*************************************************************/
|
||||
int hdfWriteGIF(FILE *fp, byte *pic, int ptype, int w, int h, byte *rmap,
|
||||
byte *gmap, byte *bmap, byte *pc2ncmap, int numcols,
|
||||
int colorstyle, int BitsPerPixel)
|
||||
{
|
||||
int InitCodeSize;
|
||||
int i;
|
||||
byte *pic8 = pic;
|
||||
|
||||
/* Shut compiler up... */
|
||||
ptype=ptype;
|
||||
rmap=rmap;
|
||||
gmap=gmap;
|
||||
bmap=bmap;
|
||||
numcols=numcols;
|
||||
colorstyle=colorstyle;
|
||||
|
||||
for (i = 0; i < 256; i++) {
|
||||
pc2nc[i] = pc2ncmap[i];
|
||||
}
|
||||
|
||||
if (BitsPerPixel <= 1)
|
||||
InitCodeSize = 2;
|
||||
else
|
||||
InitCodeSize = BitsPerPixel;
|
||||
|
||||
if (!fp) {
|
||||
fprintf(stderr, "WriteGIF: file not open for writing\n" );
|
||||
return (1);
|
||||
}
|
||||
|
||||
compress(InitCodeSize+1, fp, pic8, w*h);
|
||||
|
||||
if (ferror(fp))
|
||||
return -1;
|
||||
|
||||
return 0 ;
|
||||
}
|
||||
|
||||
/***********************************************************************/
|
||||
static unsigned long cur_accum = 0;
|
||||
static int cur_bits = 0;
|
||||
@ -123,8 +84,8 @@ static int maxbits = XV_BITS; /* user settable max # bits/code */
|
||||
static int maxcode; /* maximum code, given n_bits */
|
||||
static int maxmaxcode = 1 << XV_BITS; /* NEVER generate this */
|
||||
|
||||
static count_int htab [HSIZE];
|
||||
static unsigned short codetab [HSIZE];
|
||||
static count_int *htab;
|
||||
static unsigned short *codetab;
|
||||
|
||||
#define HashTabOf(i) htab[i]
|
||||
#define CodeTabOf(i) codetab[i]
|
||||
@ -173,6 +134,57 @@ static FILE *g_outfile;
|
||||
static int ClearCode;
|
||||
static int EOFCode;
|
||||
|
||||
/*************************************************************/
|
||||
int hdfWriteGIF(FILE *fp, byte *pic, int ptype, int w, int h, byte *rmap,
|
||||
byte *gmap, byte *bmap, byte *pc2ncmap, int numcols,
|
||||
int colorstyle, int BitsPerPixel)
|
||||
{
|
||||
int InitCodeSize;
|
||||
int i;
|
||||
byte *pic8 = pic;
|
||||
|
||||
if (!(htab = calloc(HSIZE, sizeof(count_int)))) {
|
||||
fprintf(stderr, "Out of memory");
|
||||
return 1;
|
||||
}
|
||||
if (!(codetab = calloc(HSIZE, sizeof(unsigned short)))) {
|
||||
fprintf(stderr, "Out of memory");
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Shut compiler up... */
|
||||
ptype=ptype;
|
||||
rmap=rmap;
|
||||
gmap=gmap;
|
||||
bmap=bmap;
|
||||
numcols=numcols;
|
||||
colorstyle=colorstyle;
|
||||
|
||||
for (i = 0; i < 256; i++) {
|
||||
pc2nc[i] = pc2ncmap[i];
|
||||
}
|
||||
|
||||
if (BitsPerPixel <= 1)
|
||||
InitCodeSize = 2;
|
||||
else
|
||||
InitCodeSize = BitsPerPixel;
|
||||
|
||||
if (!fp) {
|
||||
fprintf(stderr, "WriteGIF: file not open for writing\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
compress(InitCodeSize+1, fp, pic8, w*h);
|
||||
|
||||
free(htab);
|
||||
free(codetab);
|
||||
|
||||
if (ferror(fp))
|
||||
return -1;
|
||||
|
||||
return 0 ;
|
||||
}
|
||||
|
||||
/********************************************************/
|
||||
static void compress(int init_bits, FILE *outfile, byte *data, int len)
|
||||
{
|
||||
@ -194,8 +206,6 @@ static void compress(int init_bits, FILE *outfile, byte *data, int len)
|
||||
/* initialize 'compress' globals */
|
||||
maxbits = XV_BITS;
|
||||
maxmaxcode = 1<<XV_BITS;
|
||||
memset(htab, 0, sizeof(htab));
|
||||
memset(codetab, 0, sizeof(codetab));
|
||||
hsize = HSIZE;
|
||||
free_ent = 0;
|
||||
clear_flg = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user