dsweb fix
Status: Alpha
Brought to you by:
strive
dsweb sometimes returns return code 255 on gentoo when actual execution is successful, what stops overall compilation process.
This is happening because there is no return statement in one of the branches of internal function.
Diff follows.
--------------------
--- ./sugar31-orig/tools/dsbweb/dsbweb.c 2003-04-04 03:43:38.000000000 +0300
+++ ./sugar_fixed/tools/dsbweb/dsbweb.c 2010-06-21 17:28:06.356868756 +0300
@@ -355,6 +355,7 @@
}
delete_fragment_list(entries);
+ return 0;
}