Browse Source

xcap_client: fix what it seems to be an old copy/paste error

Ovidiu Sas 12 years ago
parent
commit
5acf191aee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/xcap_client/xcap_callbacks.c

+ 1 - 1
modules/xcap_client/xcap_callbacks.c

@@ -78,6 +78,6 @@ void destroy_xcapcb_list(void)
 	{
 		prev_xcb= xcb;
 		xcb= xcb->next;
-		shm_free(xcb);
+		shm_free(prev_xcb);
 	}
 }