Skip to content

Commit 13bbda2

Browse files
committed
bugfix in pool_list
1 parent 7e57912 commit 13bbda2

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
build/
2+
node_modules/
23
test.js

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ From source:
1919
sudo apt-get install nodejs node-gyp librados-dev
2020
git clone https://github.com/ksperis/node-rados
2121
cd node-rados
22+
npm install nan
2223
node-gyp rebuild
2324
```
2425

rados.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ NAN_METHOD(Rados::pool_list) {
193193
const char *b = buffer;
194194
uint32_t array_id = 0;
195195
while (1) {
196-
if (b[array_id] == '\0') {
196+
if (*b == '\0') {
197197
break;
198198
}
199199
pools->Set(array_id, NanNew<String>(b));

0 commit comments

Comments
 (0)