Revision 730b02003070400a82ff89b240573765d71e839a authored by Andreas Gruenbacher on 15 March 2010, 22:18:48 UTC, committed by Junio C Hamano on 20 March 2010, 16:28:48 UTC
A temporary struct ref is allocated in store_updated_refs() but not
freed.

Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 8da61a2
Raw File
sigchain.h
#ifndef SIGCHAIN_H
#define SIGCHAIN_H

typedef void (*sigchain_fun)(int);

int sigchain_push(int sig, sigchain_fun f);
int sigchain_pop(int sig);

void sigchain_push_common(sigchain_fun f);

#endif /* SIGCHAIN_H */
back to top