Skip to content

Commit 8465fa4

Browse files
committed
please the compiler god, and return something meaningful on connect()
1 parent ebdfb6b commit 8465fa4

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rados",
3-
"version": "0.2.101",
3+
"version": "0.2.102",
44
"description" : "Ceph rados client for node.js",
55
"author" : "Laurent Barbe <[email protected]>",
66
"repository" : {

rados.cc

+6-2
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,10 @@ NAN_METHOD(Rados::connect) {
157157

158158
if (err == 0) {
159159
obj->state = STATE_CONNECTED;
160+
info.GetReturnValue().Set(Nan::True());
160161
}
161162

162-
info.GetReturnValue().Set(Nan::New<Number>(-err));
163+
info.GetReturnValue().Set(Nan::False());
163164
}
164165

165166

@@ -530,6 +531,8 @@ NAN_METHOD(Ioctx::getxattr) {
530531
int ret = rados_getxattr(obj->ioctx, *oid, *name, temp_buffer, 0);
531532
if (ret < 0) {
532533
info.GetReturnValue().Set(Nan::Null());
534+
return;
535+
533536
} else {
534537
size = ret;
535538
}
@@ -668,7 +671,8 @@ void Ioctx::wait_complete(uv_work_t *req) {
668671

669672

670673
void Ioctx::callback_complete(uv_work_t *req) {
671-
Isolate* isolate = Isolate::GetCurrent();
674+
Isolate* VARIABLE_IS_NOT_USED isolate = Isolate::GetCurrent();
675+
672676
Nan::HandleScope scope;
673677
AsyncData *asyncdata = (AsyncData *)req->data;
674678

rados.h

+5
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,10 @@ class Ioctx : public Nan::ObjectWrap {
9393
static Nan::Persistent<v8::FunctionTemplate> constructor;
9494
};
9595

96+
#ifdef __GNUC__
97+
#define VARIABLE_IS_NOT_USED __attribute__ ((unused))
98+
#else
99+
#define VARIABLE_IS_NOT_USED
100+
#endif
96101

97102
#endif

0 commit comments

Comments
 (0)