Created
April 11, 2015 22:11
-
-
Save hi-im-milan/53a20650fae88485f86c to your computer and use it in GitHub Desktop.
Bug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Handle<Object> obj; | |
int argc; | |
Handle<Value> argv[argc]; | |
if (resp!=NULL){ | |
if (messageFactory->hasObject(resp->getName())){ | |
obj=messageFactory->wrapObject(resp->getName(),getIsolate(),resp); | |
argc=1; | |
argv[0]=obj; | |
}else{ | |
argc=0; | |
} | |
}else{ | |
argc=0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment