We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3201d7 commit fe74871Copy full SHA for fe74871
src/node_printer_win.cc
@@ -27,18 +27,18 @@ namespace{
27
* @param iSizeKbytes size in bytes of required allocating memory
28
*/
29
MemValue(const DWORD iSizeKbytes) {
30
- _value = (Type*)malloc(iSizeKbytes);
+ this->_value = (Type*)malloc(iSizeKbytes);
31
}
32
-
+
33
~MemValue () {
34
free();
35
36
protected:
37
virtual void free() {
38
- if(_value != NULL)
+ if(this->_value != NULL)
39
{
40
- ::free(_value);
41
- _value = NULL;
+ ::free(this->_value);
+ this->_value = NULL;
42
43
44
};
@@ -747,4 +747,4 @@ MY_NODE_MODULE_CALLBACK(PrintFile)
747
748
MY_NODE_MODULE_HANDLESCOPE;
749
RETURN_EXCEPTION_STR("Not yet implemented on Windows");
750
-}
+}
0 commit comments