comparison minijss/jloadxm.c @ 1187:f195dd7bfa48

Initialize return variable.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 05 Mar 2015 12:14:43 +0200
parents eca2784bff75
children d18c50f88d44
comparison
equal deleted inserted replaced
1186:eca2784bff75 1187:f195dd7bfa48
799 */ 799 */
800 int jssLoadXM(DMResource *inFile, JSSModule **ppModule, BOOL probe) 800 int jssLoadXM(DMResource *inFile, JSSModule **ppModule, BOOL probe)
801 { 801 {
802 JSSModule *module; 802 JSSModule *module;
803 XMHeader xmH; 803 XMHeader xmH;
804 int index, ret; 804 int index, ret = DMERR_OK;
805 805
806 assert(ppModule != NULL); 806 assert(ppModule != NULL);
807 assert(inFile != NULL); 807 assert(inFile != NULL);
808 *ppModule = NULL; 808 *ppModule = NULL;
809 809