| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Signed-off-by: Lazizbek Ergashev <lazerg2@gmail.com>
|
Review requested:
|
Sorry, something went wrong.
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## main #64878 +/- ##
=======================================
Coverage 90.16% 90.17%
=======================================
Files 746 746
Lines 242763 242768 +5
Branches 45761 45768 +7
=======================================
+ Hits 218898 218921 +23
+ Misses 15352 15321 -31
- Partials 8513 8526 +13
... and 35 files with indirect coverage changes 🚀 New features to boost your workflow:
|
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
dns.lookupService() and dns.promises.lookupService() abort the process with a native assertion when address is a non-string that still coerces to a valid IP, like a Buffer. isIP() stringifies its argument, so the existing guard passes and the raw value reaches the C++ binding, where it trips CHECK(args[1]->IsString()). Validating that address is a string first, as dgram already does, makes a bad type throw ERR_INVALID_ARG_TYPE instead of crashing.
Fixes: #64877