Avoid a compiler warning.
Avoid copying "jeprof" to a 1-byte buffer within prof_boot0() when heap profiling is disabled. Although this is dead code under such conditions, the compiler doesn't figure that part out. Reported by Eduardo Silva.
This commit is contained in:
parent
a184d3fcde
commit
5f60afa01e
@ -8,7 +8,11 @@ typedef struct prof_ctx_s prof_ctx_t;
|
|||||||
typedef struct prof_tdata_s prof_tdata_t;
|
typedef struct prof_tdata_s prof_tdata_t;
|
||||||
|
|
||||||
/* Option defaults. */
|
/* Option defaults. */
|
||||||
#define PROF_PREFIX_DEFAULT "jeprof"
|
#ifdef JEMALLOC_PROF
|
||||||
|
# define PROF_PREFIX_DEFAULT "jeprof"
|
||||||
|
#else
|
||||||
|
# define PROF_PREFIX_DEFAULT ""
|
||||||
|
#endif
|
||||||
#define LG_PROF_SAMPLE_DEFAULT 19
|
#define LG_PROF_SAMPLE_DEFAULT 19
|
||||||
#define LG_PROF_INTERVAL_DEFAULT -1
|
#define LG_PROF_INTERVAL_DEFAULT -1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user