From b45450ed67caa904b82516110ddc18e1f6ffaaa8 Mon Sep 17 00:00:00 2001 From: Qingping Hou Date: Tue, 6 Mar 2012 13:06:31 +0800 Subject: [PATCH] mod: remove printf workaround in djvu.c the bug seems to be fixed by commit: 4a5b12aaa4418ec63273bbfb2b6775c416d3f39a --- djvu.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/djvu.c b/djvu.c index d3186cc9a..30514298e 100644 --- a/djvu.c +++ b/djvu.c @@ -108,13 +108,6 @@ static int closeDocument(lua_State *L) { } if(doc->context != NULL) { ddjvu_context_release(doc->context); - - /*@TODO fix this! 03.03 2012 - * it works fine in EMU mode, but if I don't - * add this printf after context_release, kpfview - * simply exit after this function call! */ - printf("remeber to fix this bug!\n"); - doc->context = NULL; } return 0;