I'm currently working on a legacy MFC application and I noticed that there was a missing call to GdiplusShutdown() before exiting the application. The documentation clearly states that each GdiplusStartup call must be paired by a call to GdiplusShutdown().
What happens if this function is not called ? Object leak, memory leak, other ?