kern: fix fmtrwdata on nil buffers
This commit is contained in:
parent
8ea71b1c66
commit
9aea97a51f
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* This file is part of Jehanne.
|
* This file is part of Jehanne.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2015-2016 Giacomo Tesio <giacomo@tesio.it>
|
* Copyright (C) 2015-2017 Giacomo Tesio <giacomo@tesio.it>
|
||||||
*
|
*
|
||||||
* Jehanne is free software: you can redistribute it and/or modify
|
* Jehanne is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -31,7 +31,7 @@ fmtrwdata(Fmt* f, char* a, int n)
|
||||||
char *t;
|
char *t;
|
||||||
|
|
||||||
if(a == nil){
|
if(a == nil){
|
||||||
jehanne_fmtprint(f, " 0x0%s");
|
jehanne_fmtprint(f, " 0x0/\"\"");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
a = validaddr(a, n, 0);
|
a = validaddr(a, n, 0);
|
||||||
|
|
Loading…
Reference in New Issue