Browse Source

Prevent corrupt values returned from the opencl code from trying to read beyond the end of the buffer by masking the value to a max of 15.

nfactor-troky
Con Kolivas 12 years ago
parent
commit
2ff1610307
  1. 3
      findnonce.c

3
findnonce.c

@ -252,6 +252,9 @@ static void *postcalc_hash(void *userdata) @@ -252,6 +252,9 @@ static void *postcalc_hash(void *userdata)
pthread_detach(pthread_self());
/* To prevent corrupt values in FOUND from trying to read beyond the
* end of the res[] array */
pcd->res[FOUND] &= FOUND;
for (entry = 0; entry < pcd->res[FOUND]; entry++) {
uint32_t nonce = pcd->res[entry];

Loading…
Cancel
Save