Comparing version 0.0.14 to 0.0.15
0.0.15 / 2012-05-31 | ||
=================== | ||
- fix possible segmentation fault with `readObject()` | ||
- fix possible segmentation fault with `readPointer()` | ||
0.0.14 / 2012-05-31 | ||
@@ -3,0 +9,0 @@ =================== |
@@ -19,3 +19,3 @@ { "name": "ref" | ||
] | ||
, "version": "0.0.14" | ||
, "version": "0.0.15" | ||
, "author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)" | ||
@@ -22,0 +22,0 @@ , "repository": { "type": "git", "url": "git://github.com/TooTallNate/ref.git" } |
@@ -49,2 +49,6 @@ | ||
it('should return JS `null` when reading an Object from the NULL pointer', function () { | ||
assert.strictEqual(null, ref.NULL.readObject()) | ||
}) | ||
}) |
@@ -48,2 +48,6 @@ | ||
it('should return JS `null` when reading a NULL pointer', function () { | ||
assert.strictEqual(null, ref.NULL.readPointer()) | ||
}) | ||
}) |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
70440
1005