summaryrefslogtreecommitdiff
path: root/Kernel/KSyms.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-01-28 22:53:31 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-01-28 22:53:31 +0100
commitf83a94ca396d55d4fbf76dff7867a30e1e05ecdf (patch)
tree316ffce88b362f64b3e99da46e763f6e56f17cf6 /Kernel/KSyms.cpp
parent7455f5ea4200c5f90bcbc2c025c58a00938952c4 (diff)
downloadserenity-f83a94ca396d55d4fbf76dff7867a30e1e05ecdf.zip
Kernel: Remove outdated FIXME.
Diffstat (limited to 'Kernel/KSyms.cpp')
-rw-r--r--Kernel/KSyms.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/KSyms.cpp b/Kernel/KSyms.cpp
index 4a89206fee..fb9321764b 100644
--- a/Kernel/KSyms.cpp
+++ b/Kernel/KSyms.cpp
@@ -29,8 +29,6 @@ const KSym* ksymbolicate(dword address)
static void load_ksyms_from_data(const ByteBuffer& buffer)
{
- // FIXME: It's gross that this vector grows dynamically rather than being sized-to-fit.
- // We're wasting that eternal kmalloc memory.
auto* bufptr = (const char*)buffer.pointer();
auto* start_of_name = bufptr;
dword address = 0;