Displaying 4 results from an estimated 4 matches for "iniparselin".
Did you mean:
iniparseline
2008 Jan 31
2
[patch] fix crash in ini plugin
...ults on startup. The following patch fixes it. Not
sure why this hasn't been caught before - i guess not many people use
the ini plugin.
Please apply.
randolph
diff --git a/plugins/ini.c b/plugins/ini.c
index d58f671..2d3c2dd 100644
--- a/plugins/ini.c
+++ b/plugins/ini.c
@@ -377,7 +377,7 @@ iniParseLine (char *line, char **optionName, char **optionValue)
if (*optionName)
{
strncpy (*optionName, line, length);
- *optionName[length] = 0;
+ (*optionName)[length] = 0;
}
splitPos++;
optionLength = strlen (splitPos);
@@ -387,7 +387,7 @@ iniParseLine (char *l...
2007 Apr 13
3
Just another ini patch
Hi,
well after some ever further investigation of some bugs, I ended up
cleaning up the code, again. I also fixed some really heavy memory
leaks in csvToList and made it in general more stable.
Regards,
Patrick "Marex" Niklaus
-------------- next part --------------
A non-text attachment was scrubbed...
Name: ini.c.patch
Type: text/x-patch
Size: 8275 bytes
Desc: not available
Url :
2007 Aug 03
4
[ANNOUNCE] compiz-0.5.2
...of git+ssh://git.freedesktop.org/git/xorg/app/compiz
This patch breaks --disable-gconf
Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/app/compiz
Patrick Niklaus:
Improve action reading code
Fixed list parsing (plugged a memory leak)
Cleaned up iniParseLine
Some minor cleanup in iniLoadOptionsFromFile
Fixed list parsing
Fixed bug with action parsing
Add features to image plugin metadata.
Quinn Storm:
add option to turn off scale behaviour where a click on the desktop shows the desktop
Robert Carr:
Add a priv entr...
2007 Oct 01
4
[ANNOUNCE] compiz-0.6.0
...ew ones in the plugin
Tidy up
Use consistent variable naming conventions
Use fleur cursor for move. Patch from Trevi?o
This patch breaks --disable-gconf
Patrick Niklaus (7):
Improve action reading code
Fixed list parsing (plugged a memory leak)
Cleaned up iniParseLine
Some minor cleanup in iniLoadOptionsFromFile
Fixed list parsing
Fixed bug with action parsing
Add features to image plugin metadata.
Per Wigren (1):
Add --only-current-screen option which tell compiz to only manage
Quinn Storm (1):
add option to turn off scale...