diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-03-04 00:59:14 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-03-04 00:59:14 -0500 |
commit | 8c967b93862193421c1ba0ed49b52835e9625ba1 (patch) | |
tree | 1c94989559309c617b3d355a73b3864e87eda1bd /src | |
parent | 6fc5fdbdc70dd17ea8e681a361fb4dae541ee953 (diff) | |
download | musl-8c967b93862193421c1ba0ed49b52835e9625ba1.tar.gz musl-8c967b93862193421c1ba0ed49b52835e9625ba1.tar.xz musl-8c967b93862193421c1ba0ed49b52835e9625ba1.zip |
enforce stack size min in pthread_attr_setstacksize
Diffstat (limited to 'src')
-rw-r--r-- | src/thread/pthread_attr_setstacksize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_attr_setstacksize.c b/src/thread/pthread_attr_setstacksize.c index df16b980..e4de5208 100644 --- a/src/thread/pthread_attr_setstacksize.c +++ b/src/thread/pthread_attr_setstacksize.c @@ -2,7 +2,7 @@ int pthread_attr_setstacksize(pthread_attr_t *a, size_t size) { - if (size-PAGE_SIZE > SIZE_MAX/4) return EINVAL; + if (size-PTHREAD_STACK_MIN > SIZE_MAX/4) return EINVAL; a->_a_stacksize = size - DEFAULT_STACK_SIZE; return 0; } |