Just to let the community know that this memory leak was solved by moving the SDRAM initialization call before the Display initialization call
SDRAM.begin();
Display.begin();
I had built the display and pushed it onto the display(my Splash Screen) and then initialized the SDRAM later on. I spent many hours taking my program apart to resolve this issue.
Thanks for all your input.