X-Git-Url: http://git.mutantstargoat.com?a=blobdiff_plain;f=src%2Ffbdev%2Fmouse.cc;h=bc2f29f1c0594421ad07c003351d829988616573;hb=e2626c41c841dbbfb64ddf6341b4e23089036299;hp=803e8e0dcbeadbd36a6b9e6e144b05f1b1e6c2c5;hpb=2a5665e9005d05c8d30747f1fcb2c41d0a8f27c8;p=winnie diff --git a/src/fbdev/mouse.cc b/src/fbdev/mouse.cc index 803e8e0..bc2f29f 100644 --- a/src/fbdev/mouse.cc +++ b/src/fbdev/mouse.cc @@ -1,3 +1,24 @@ +/* +winnie - an experimental window system + +Copyright (C) 2013 Eleni Maria Stea + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . + +Author: Eleni Maria Stea +*/ + #ifdef WINNIE_FBDEV #include #include @@ -13,6 +34,7 @@ #include "geom.h" #include "gfx.h" #include "mouse.h" +#include "shalloc.h" #include "window.h" #include "wm.h" @@ -34,9 +56,10 @@ static Mouse *mouse; bool init_mouse() { - if(!(mouse = (Mouse*)malloc(sizeof *mouse))) { + if(!(mouse = (Mouse*)sh_malloc(sizeof *mouse))) { return false; } + memset(mouse, 0, sizeof *mouse); mouse->dev_fd = -1; @@ -55,7 +78,7 @@ void destroy_mouse() close(mouse->dev_fd); mouse->dev_fd = -1; } - free(mouse); + sh_free(mouse); } void set_mouse_bounds(const Rect &rect)