Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
events: check if _events is an own property
Browse files Browse the repository at this point in the history
Without this check it is possible to have the _events object shared
amongst instances.

Fixes #7157

Signed-off-by: Trevor Norris <trev.norris@gmail.com>
  • Loading branch information
vkurchatkin authored and trevnorris committed Apr 15, 2014
1 parent c7f424e commit 2c6b424
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/events.js
Expand Up @@ -49,7 +49,10 @@ EventEmitter.init = function() {
this.domain = domain.active;
}
}
this._events = this._events || {};

if (!this._events || this._events === Object.getPrototypeOf(this)._events)
this._events = {};

this._maxListeners = this._maxListeners || undefined;
};

Expand Down
14 changes: 14 additions & 0 deletions test/simple/test-event-emitter-subclass.js
Expand Up @@ -53,3 +53,17 @@ process.on('exit', function() {
assert.deepEqual(myee._events, {});
console.log('ok');
});


function MyEE2() {
EventEmitter.call(this);
}

MyEE2.prototype = new EventEmitter();

var ee1 = new MyEE2();
var ee2 = new MyEE2();

ee1.on('x', function () {});

assert.equal(EventEmitter.listenerCount(ee2, 'x'), 0);

0 comments on commit 2c6b424

Please sign in to comment.