all repos — fluxbox @ 012f661179ef50dcea4402796f30a2acb7b36c18

custom fork of the fluxbox windowmanager

fix crash on amd64
rathnor rathnor
commit

012f661179ef50dcea4402796f30a2acb7b36c18

parent

d6a32de0f85d80693461574a40b67ad1856bef7f

2 files changed, 6 insertions(+), 3 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,6 +1,9 @@

(Format: Year/Month/Day) Changes for 0.9.11 *04/09/03: + * Fix crash on startup on amd64 (Simon) + - We may need to review usages of 0 as opposed to NULL + XmbFontImp.cc * Added -nearmouse to FbRun (Mathias) main.cc *04/09/02:
M src/FbTk/XmbFontImp.ccsrc/FbTk/XmbFontImp.cc

@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: XmbFontImp.cc,v 1.10 2004/08/31 15:26:39 rathnor Exp $ +// $Id: XmbFontImp.cc,v 1.11 2004/09/03 17:05:35 rathnor Exp $ #include "XmbFontImp.hh"

@@ -173,9 +173,9 @@ fontname = fontnames[0];

} getFontElement(fontname, weight, FONT_ELEMENT_SIZE, - "-medium-", "-bold-", "-demibold-", "-regular-", 0); + "-medium-", "-bold-", "-demibold-", "-regular-", NULL); getFontElement(fontname, slant, FONT_ELEMENT_SIZE, - "-r-", "-i-", "-o-", "-ri-", "-ro-", 0); + "-r-", "-i-", "-o-", "-ri-", "-ro-", NULL); getFontSize(fontname, &pixel_size); if (! strcmp(weight, "*"))