We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e57912 commit 13bbda2Copy full SHA for 13bbda2
.gitignore
@@ -1,2 +1,3 @@
1
build/
2
+node_modules/
3
test.js
README.md
@@ -19,6 +19,7 @@ From source:
19
sudo apt-get install nodejs node-gyp librados-dev
20
git clone https://github.com/ksperis/node-rados
21
cd node-rados
22
+npm install nan
23
node-gyp rebuild
24
```
25
rados.cc
@@ -193,7 +193,7 @@ NAN_METHOD(Rados::pool_list) {
193
const char *b = buffer;
194
uint32_t array_id = 0;
195
while (1) {
196
- if (b[array_id] == '\0') {
+ if (*b == '\0') {
197
break;
198
}
199
pools->Set(array_id, NanNew<String>(b));
0 commit comments