Hello Andrew, Actually, you also need to modify the declaration for argv so that it doesn't have the args.size() as its parameter. Since you modified it to use push_back, it will actually append to the end at index args.size() instead of at index 0. As it stands, the first args.size() elements would all be NULL.
Regards, Jeremy
