зеркало из https://github.com/github/ruby.git
gc.c: ignore empty strings
* gc.c (get_envparam_size, get_envparam_double): silently ignore empty strings, without any warnings regardless $VERBOSE. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44874 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
9ba0b76fb3
Коммит
5fe0030d02
4
gc.c
4
gc.c
|
@ -5651,7 +5651,7 @@ get_envparam_size(const char *name, size_t *default_value, size_t lower_bound)
|
|||
char *ptr = getenv(name);
|
||||
ssize_t val;
|
||||
|
||||
if (ptr != NULL) {
|
||||
if (ptr != NULL && *ptr) {
|
||||
char *end;
|
||||
#if SIZEOF_SIZE_T == SIZEOF_LONG_LONG
|
||||
val = strtoll(ptr, &end, 0);
|
||||
|
@ -5686,7 +5686,7 @@ get_envparam_double(const char *name, double *default_value, double lower_bound)
|
|||
char *ptr = getenv(name);
|
||||
double val;
|
||||
|
||||
if (ptr != NULL) {
|
||||
if (ptr != NULL && *ptr) {
|
||||
char *end;
|
||||
val = strtod(ptr, &end);
|
||||
if (!*ptr || *end) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче