Merge pull request #1468 from Schamper/patch-1

Add a return statement to the callback
This commit is contained in:
Barış Soner Uşaklı
2014-05-01 19:30:18 -04:00

View File

@@ -24,7 +24,7 @@ var winston = require('winston'),
}
if(!Array.isArray(pids) || !pids.length) {
callback(null, false);
return callback(null, false);
}
callback(null, parseInt(pids[0], 10) === parseInt(pid, 10));