# HG changeset patch # User Michael Spacefalcon # Date 1403832023 0 # Node ID 6e6d4c1ec7333619aa3a717dd877a81a68cd93a5 # Parent 658b141a1600391205b0f6b1d65e3d5ec823b568 os_isr.c: os_CreateOSISR(): missed the assignment to .stack diff -r 658b141a1600 -r 6e6d4c1ec733 gsm-fw/gpf/osl/os_isr.c --- a/gsm-fw/gpf/osl/os_isr.c Fri Jun 27 00:05:23 2014 +0000 +++ b/gsm-fw/gpf/osl/os_isr.c Fri Jun 27 01:20:23 2014 +0000 @@ -128,6 +128,7 @@ goto error; strncpy(OSISRTable[handle].name, name, RESOURCE_NAMELEN); OSISRTable[handle].name[RESOURCE_NAMELEN-1] = 0; + OSISRTable[handle].stack = hisr_stack; *hisr_handle = handle; os_SetInterruptState(old_state, &state); return(OS_OK);